1
0
mirror of https://github.com/mastodon/mastodon synced 2024-12-05 02:08:21 +09:00
mastodon/app/controllers/admin/roles_controller.rb

26 lines
519 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Admin
class RolesController < BaseController
before_action :set_user
def promote
authorize @user, :promote?
@user.promote!
redirect_to admin_account_path(@user.account_id)
end
def demote
authorize @user, :demote?
@user.demote!
redirect_to admin_account_path(@user.account_id)
end
private
def set_user
@user = Account.find(params[:account_id]).user || raise(ActiveRecord::RecordNotFound)
end
end
end