12 lines
274 B
Ruby
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
|