Admins can see the list of invited experts

This commit is contained in:
kara Diaby 2020-12-18 09:16:41 +01:00
parent 2b06ee95e1
commit 8f6440f615
6 changed files with 95 additions and 2 deletions

View file

@ -1,6 +1,6 @@
module NewAdministrateur
class ProceduresController < AdministrateurController
before_action :retrieve_procedure, only: [:champs, :annotations, :edit, :monavis, :update_monavis, :jeton, :update_jeton, :publication, :publish, :transfert, :allow_expert_review]
before_action :retrieve_procedure, only: [:champs, :annotations, :edit, :monavis, :update_monavis, :jeton, :update_jeton, :publication, :publish, :transfert, :allow_expert_review, :invited_expert_list]
before_action :procedure_locked?, only: [:champs, :annotations]
ITEMS_PER_PAGE = 25
@ -185,6 +185,11 @@ module NewAdministrateur
end
end
def invited_expert_list
@invited_expert_emails = Avis.invited_expert_emails(@procedure)
redirect_to admin_procedure_path(@procedure) if @invited_expert_emails.blank?
end
private
def apercu_tab