Class: OaiConfigController

Inherits:
ApplicationController show all
Defined in:
frontend/app/controllers/oai_config_controller.rb

Constant Summary

Constants included from Searchable

Searchable::ABSTRACT

Instance Method Summary collapse

Methods inherited from ApplicationController

#archivesspace, can_access?, permission_mappings, set_access_control

Methods included from JsonHelper

#merge_notes, #process_json_notes

Methods included from Searchable

#default_search_opts, #get_filter_years, #handle_results, #html_notes, #process_results, #process_search_results, #repo_context, #search_terms, #set_up_advanced_search, #set_up_and_run_search, #set_up_search, #strip_facet_fields

Methods included from HandleFaceting

#fetch_only_facets, #get_pretty_facet_value, #strip_facets

Methods included from ManipulateNode

#inheritance, #process_mixed_content, #strip_mixed_content

Instance Method Details

#current_recordObject



25
26
27
# File 'frontend/app/controllers/oai_config_controller.rb', line 25

def current_record
  @oai_config
end

#editObject



5
6
7
8
# File 'frontend/app/controllers/oai_config_controller.rb', line 5

def edit
  @oai_config = JSONModel(:oai_config).all.first
  @repositories = JSONModel(:repository).all
end

#updateObject



10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'frontend/app/controllers/oai_config_controller.rb', line 10

def update
  handle_oai_config_params(params)
  @oai_config = JSONModel(:oai_config).all.first

  handle_crud(:instance => :oai_config,
              :model => JSONModel(:oai_config),
              :replace => false,
              :obj => @oai_config,
              :on_invalid => ->() { return render :action => :edit },
              :on_valid => ->(id) {
                flash[:success] = I18n.t("oai_config._frontend.action.updated")
                redirect_to :controller => :oai_config, :action => :edit
              })
end