Merge pull request #1212 from betagouv/improve_whitelisting
Improve whitelisting
This commit is contained in:
commit
bcf3246e89
5 changed files with 7 additions and 4 deletions
|
@ -1,8 +1,9 @@
|
|||
module Manager
|
||||
class ProceduresController < Manager::ApplicationController
|
||||
def whitelist
|
||||
procedure = Procedure.find(params[:procedure_id])
|
||||
procedure = Procedure.find(params[:id])
|
||||
procedure.whitelist!
|
||||
flash[:notice] = "Procédure whitelistée."
|
||||
redirect_to manager_procedure_path(procedure)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -26,6 +26,7 @@ class ProcedureDashboard < Administrate::BaseDashboard
|
|||
published_at: Field::DateTime,
|
||||
hidden_at: Field::DateTime,
|
||||
archived_at: Field::DateTime,
|
||||
whitelisted_at: Field::DateTime,
|
||||
}.freeze
|
||||
|
||||
# COLLECTION_ATTRIBUTES
|
||||
|
@ -54,6 +55,7 @@ class ProcedureDashboard < Administrate::BaseDashboard
|
|||
:created_at,
|
||||
:updated_at,
|
||||
:published_at,
|
||||
:whitelisted_at,
|
||||
:hidden_at,
|
||||
:archived_at,
|
||||
:types_de_champ,
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
%h1.header__heading= content_for(:title)
|
||||
.header__actions
|
||||
- if !procedure.whitelisted?
|
||||
= link_to 'whitelister', manager_procedure_whitelist_path(procedure), method: :post, class: 'button'
|
||||
= link_to 'whitelister', whitelist_manager_procedure_path(procedure), method: :post, class: 'button'
|
||||
|
||||
%dl
|
||||
- page.attributes.each do |attribute|
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Rails.application.routes.draw do
|
||||
namespace :manager do
|
||||
resources :procedures, only: [:index, :show] do
|
||||
post '/whitelist' => 'procedures#whitelist'
|
||||
post 'whitelist', on: :member
|
||||
end
|
||||
|
||||
resources :administrateurs, only: [:index, :show]
|
||||
|
|
|
@ -5,7 +5,7 @@ describe Manager::ProceduresController, type: :controller do
|
|||
|
||||
before do
|
||||
sign_in administration
|
||||
post :whitelist, procedure_id: procedure.id
|
||||
post :whitelist, id: procedure.id
|
||||
procedure.reload
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue