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

13 lines
313 B
Ruby

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