about summary refs log tree commit diff
path: root/app/controllers/admin/custom_emojis_controller.rb
blob: 572ad1ac2e2bac459551e868a320adab4e088b51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true

module Admin
  class CustomEmojisController < BaseController
    def index
      @custom_emojis = CustomEmoji.where(domain: nil)
    end

    def new
      @custom_emoji = CustomEmoji.new
    end

    def create
      @custom_emoji = CustomEmoji.new(resource_params)

      if @custom_emoji.save
        redirect_to admin_custom_emojis_path, notice: I18n.t('admin.custom_emojis.created_msg')
      else
        render :new
      end
    end

    def destroy
      CustomEmoji.find(params[:id]).destroy
      redirect_to admin_custom_emojis_path, notice: I18n.t('admin.custom_emojis.destroyed_msg')
    end

    private

    def resource_params
      params.require(:custom_emoji).permit(:shortcode, :image)
    end
  end
end