Class: OtuPageLayoutSectionsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- OtuPageLayoutSectionsController
- Defined in:
- app/controllers/otu_page_layout_sections_controller.rb
Constant Summary
Constants included from ProjectsHelper
ProjectsHelper::CLASSIFIER, ProjectsHelper::CLASSIFIER_ANNOTATION
Instance Method Summary collapse
-
#create ⇒ Object
POST /otu_page_layout_sections POST /otu_page_layout_sections.json.
-
#destroy ⇒ Object
DELETE /otu_page_layout_sections/1 DELETE /otu_page_layout_sections/1.json.
-
#otu_page_layout_section_params ⇒ Object
private
Never trust parameters from the scary internet, only allow the white list through.
-
#set_otu_page_layout_section ⇒ Object
private
Use callbacks to share common setup or constraints between actions.
-
#update ⇒ Object
PATCH/PUT /otu_page_layout_sections/1 PATCH/PUT /otu_page_layout_sections/1.json.
Methods included from DataControllerConfiguration::ProjectDataControllerConfiguration
Methods included from RedirectHelper
Methods included from RequestType
Methods included from LogRecent
Methods included from Cookies
#digest_cookie, #digested_cookie_exists?
Methods included from Whitelist
Methods included from ProjectsHelper
#cumulative_gb_per_year, #document_cumulative_gb_per_year, #document_gb_per_year, #gb_per_year, #image_cumulative_gb_per_year, #image_gb_per_year, #invalid_object, #project_classification, #project_link, #project_matches, #project_tag, #projects_list, #projects_search_form, #taxonworks_classification, #week_in_review_graphs
Methods included from Api::Intercept
Methods included from TokenAuthentication
#intercept_project, #intercept_user, #intercept_user_or_project, #project_token_authenticate, #token_authenticate
Instance Method Details
#create ⇒ Object
POST /otu_page_layout_sections POST /otu_page_layout_sections.json
8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'app/controllers/otu_page_layout_sections_controller.rb', line 8 def create @otu_page_layout_section = OtuPageLayoutSection.new(otu_page_layout_section_params) respond_to do |format| if @otu_page_layout_section.save format.html {redirect_back(fallback_location: (request.referer || root_path), notice: 'Otu page layout section was successfully created.')} format.json { render json: @otu_page_layout_section, status: :created, location: @otu_page_layout_section } else format.html {redirect_back(fallback_location: (request.referer || root_path), notice: 'Otu page layout section was NOT successfully created.')} format.json { render json: @otu_page_layout_section.errors, status: :unprocessable_entity } end end end |
#destroy ⇒ Object
DELETE /otu_page_layout_sections/1 DELETE /otu_page_layout_sections/1.json
38 39 40 41 42 43 44 |
# File 'app/controllers/otu_page_layout_sections_controller.rb', line 38 def destroy @otu_page_layout_section.destroy respond_to do |format| format.html { destroy_redirect @otu_page_layout_section, notice: 'Otu page layout section was successfully destroyed.' } format.json { head :no_content } end end |
#otu_page_layout_section_params ⇒ Object (private)
Never trust parameters from the scary internet, only allow the white list through.
53 54 55 56 |
# File 'app/controllers/otu_page_layout_sections_controller.rb', line 53 def otu_page_layout_section_params params.require(:otu_page_layout_section).permit(:otu_page_layout_id, :type, :topic_id, :dynamic_content_class) end |
#set_otu_page_layout_section ⇒ Object (private)
Use callbacks to share common setup or constraints between actions.
48 49 50 |
# File 'app/controllers/otu_page_layout_sections_controller.rb', line 48 def set_otu_page_layout_section @otu_page_layout_section = OtuPageLayoutSection.with_project_id(sessions_current_project_id).find(params[:id]) end |
#update ⇒ Object
PATCH/PUT /otu_page_layout_sections/1 PATCH/PUT /otu_page_layout_sections/1.json
24 25 26 27 28 29 30 31 32 33 34 |
# File 'app/controllers/otu_page_layout_sections_controller.rb', line 24 def update respond_to do |format| if @otu_page_layout_section.update(otu_page_layout_section_params) format.html {redirect_back(fallback_location: (request.referer || root_path), notice: 'Otu page layout section was successfully updated.')} format.json { render json @otu_page_layout_section, status: :ok, location: @otu_page_layout_section } else format.html {redirect_back(fallback_location: (request.referer || root_path), notice: 'Otu page layout section was NOT successfully updated.')} format.json { render json: @otu_page_layout_section.errors, status: :unprocessable_entity } end end end |