Files
once-campfire/app/controllers/accounts/bots/keys_controller.rb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

9 lines
214 B
Ruby

class Accounts::Bots::KeysController < ApplicationController
before_action :ensure_can_administer
def update
User.active_bots.find(params[:bot_id]).reset_bot_key
redirect_to account_bots_url
end
end