demarches-normaliennes/app/controllers/new_administrateur/profil_controller.rb

13 lines
274 B
Ruby
Raw Normal View History

2018-08-23 18:53:35 +02:00
module NewAdministrateur
class ProfilController < AdministrateurController
def show
end
def renew_api_token
@token = current_administrateur.renew_api_token
2018-08-24 14:19:44 +02:00
flash.now.notice = 'Votre jeton a été regénéré.'
render :show
2018-08-23 18:53:35 +02:00
end
end
end