about summary refs log tree commit diff
path: root/app/controllers/admin/tags_controller.rb
blob: 4f727c398a0be0128e853458f06d052ec1b95257 (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
35
# frozen_string_literal: true

module Admin
  class TagsController < BaseController
    before_action :set_tag

    def show
      authorize @tag, :show?

      @time_period = (6.days.ago.to_date...Time.now.utc.to_date)
    end

    def update
      authorize @tag, :update?

      if @tag.update(tag_params.merge(reviewed_at: Time.now.utc))
        redirect_to admin_tag_path(@tag.id), notice: I18n.t('admin.tags.updated_msg')
      else
        @time_period = (6.days.ago.to_date...Time.now.utc.to_date)

        render :show
      end
    end

    private

    def set_tag
      @tag = Tag.find(params[:id])
    end

    def tag_params
      params.require(:tag).permit(:name, :display_name, :trendable, :usable, :listable)
    end
  end
end