[Fix #2674] Add Services to manager
This commit is contained in:
parent
776e684b1b
commit
a029aa62b1
4 changed files with 73 additions and 1 deletions
4
app/controllers/manager/services_controller.rb
Normal file
4
app/controllers/manager/services_controller.rb
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
module Manager
|
||||||
|
class ServicesController < Manager::ApplicationController
|
||||||
|
end
|
||||||
|
end
|
|
@ -28,6 +28,7 @@ class ProcedureDashboard < Administrate::BaseDashboard
|
||||||
hidden_at: Field::DateTime,
|
hidden_at: Field::DateTime,
|
||||||
archived_at: Field::DateTime,
|
archived_at: Field::DateTime,
|
||||||
whitelisted_at: Field::DateTime,
|
whitelisted_at: Field::DateTime,
|
||||||
|
service: Field::BelongsTo,
|
||||||
}.freeze
|
}.freeze
|
||||||
|
|
||||||
# COLLECTION_ATTRIBUTES
|
# COLLECTION_ATTRIBUTES
|
||||||
|
@ -54,6 +55,7 @@ class ProcedureDashboard < Administrate::BaseDashboard
|
||||||
:description,
|
:description,
|
||||||
:organisation,
|
:organisation,
|
||||||
:direction,
|
:direction,
|
||||||
|
:service,
|
||||||
:created_at,
|
:created_at,
|
||||||
:updated_at,
|
:updated_at,
|
||||||
:published_at,
|
:published_at,
|
||||||
|
@ -65,7 +67,7 @@ class ProcedureDashboard < Administrate::BaseDashboard
|
||||||
:for_individual,
|
:for_individual,
|
||||||
:individual_with_siret,
|
:individual_with_siret,
|
||||||
:auto_archive_on,
|
:auto_archive_on,
|
||||||
:gestionnaires
|
:gestionnaires,
|
||||||
].freeze
|
].freeze
|
||||||
|
|
||||||
# FORM_ATTRIBUTES
|
# FORM_ATTRIBUTES
|
||||||
|
|
63
app/dashboards/service_dashboard.rb
Normal file
63
app/dashboards/service_dashboard.rb
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
require "administrate/base_dashboard"
|
||||||
|
|
||||||
|
class ServiceDashboard < Administrate::BaseDashboard
|
||||||
|
# ATTRIBUTE_TYPES
|
||||||
|
# a hash that describes the type of each of the model's fields.
|
||||||
|
#
|
||||||
|
# Each different type represents an Administrate::Field object,
|
||||||
|
# which determines how the attribute is displayed
|
||||||
|
# on pages throughout the dashboard.
|
||||||
|
ATTRIBUTE_TYPES = {
|
||||||
|
id: Field::Number,
|
||||||
|
type_organisme: Field::String,
|
||||||
|
nom: Field::String,
|
||||||
|
created_at: Field::DateTime,
|
||||||
|
updated_at: Field::DateTime,
|
||||||
|
administrateur: Field::BelongsTo,
|
||||||
|
organisme: Field::String,
|
||||||
|
email: Field::String,
|
||||||
|
telephone: Field::String,
|
||||||
|
horaires: Field::String,
|
||||||
|
adresse: Field::String,
|
||||||
|
siret: Field::String,
|
||||||
|
}.freeze
|
||||||
|
|
||||||
|
# COLLECTION_ATTRIBUTES
|
||||||
|
# an array of attributes that will be displayed on the model's index page.
|
||||||
|
#
|
||||||
|
# By default, it's limited to four items to reduce clutter on index pages.
|
||||||
|
# Feel free to add, remove, or rearrange items.
|
||||||
|
COLLECTION_ATTRIBUTES = [
|
||||||
|
:nom,
|
||||||
|
:type_organisme,
|
||||||
|
].freeze
|
||||||
|
|
||||||
|
# SHOW_PAGE_ATTRIBUTES
|
||||||
|
# an array of attributes that will be displayed on the model's show page.
|
||||||
|
SHOW_PAGE_ATTRIBUTES = [
|
||||||
|
:id,
|
||||||
|
:type_organisme,
|
||||||
|
:nom,
|
||||||
|
:created_at,
|
||||||
|
:updated_at,
|
||||||
|
:administrateur,
|
||||||
|
:organisme,
|
||||||
|
:email,
|
||||||
|
:telephone,
|
||||||
|
:horaires,
|
||||||
|
:adresse,
|
||||||
|
:siret,
|
||||||
|
].freeze
|
||||||
|
|
||||||
|
# FORM_ATTRIBUTES
|
||||||
|
# an array of attributes that will be displayed
|
||||||
|
# on the model's form (`new` and `edit`) pages.
|
||||||
|
FORM_ATTRIBUTES = [].freeze
|
||||||
|
|
||||||
|
# Overwrite this method to customize how users are displayed
|
||||||
|
# across all pages of the admin dashboard.
|
||||||
|
#
|
||||||
|
def display_resource(service)
|
||||||
|
service.nom
|
||||||
|
end
|
||||||
|
end
|
|
@ -31,6 +31,9 @@ Rails.application.routes.draw do
|
||||||
resources :dossiers, only: [:show]
|
resources :dossiers, only: [:show]
|
||||||
|
|
||||||
resources :demandes, only: [:index]
|
resources :demandes, only: [:index]
|
||||||
|
|
||||||
|
resources :services, only: [:index, :show]
|
||||||
|
|
||||||
post 'demandes/create_administrateur'
|
post 'demandes/create_administrateur'
|
||||||
post 'demandes/refuse_administrateur'
|
post 'demandes/refuse_administrateur'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue