demarches-normaliennes/app/controllers/new_administrateur/profil_controller.rb
2018-09-27 10:14:32 +02:00

12 lines
274 B
Ruby

module NewAdministrateur
class ProfilController < AdministrateurController
def show
end
def renew_api_token
@token = current_administrateur.renew_api_token
flash.now.notice = 'Votre jeton a été regénéré.'
render :show
end
end
end