Class: PublicContentsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- PublicContentsController
- Defined in:
- app/controllers/public_contents_controller.rb
Constant Summary
Constants included from ProjectsHelper
ProjectsHelper::CLASSIFIER, ProjectsHelper::CLASSIFIER_ANNOTATION
Instance Method Summary collapse
-
#create ⇒ Object
POST /public_contents POST /public_contents.json.
-
#destroy ⇒ Object
DELETE /public_contents/1 DELETE /public_contents/1.json.
-
#public_content_params ⇒ Object
private
Never trust parameters from the scary internet, only allow the white list through.
-
#set_public_content ⇒ Object
private
Use callbacks to share common setup or constraints between actions.
-
#update ⇒ Object
PATCH/PUT /public_contents/1 PATCH/PUT /public_contents/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 /public_contents POST /public_contents.json
8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'app/controllers/public_contents_controller.rb', line 8 def create @public_content = PublicContent.new(public_content_params) respond_to do |format| if @public_content.save format.html {redirect_back(fallback_location: (request.referer || root_path), notice: 'Public content was successfully created.')} format.json { render json: @public_content, status: :created, location: @public_content } else format.html {redirect_back(fallback_location: (request.referer || root_path), notice: 'Public content was NOT successfully created.')} format.json { render json: @public_content.errors, status: :unprocessable_entity } end end end |
#destroy ⇒ Object
DELETE /public_contents/1 DELETE /public_contents/1.json
38 39 40 41 42 43 44 |
# File 'app/controllers/public_contents_controller.rb', line 38 def destroy @public_content.destroy respond_to do |format| format.html { destroy_redirect @public_content, notice: 'Public content was successfully destroyed.' } format.json { head :no_content } end end |
#public_content_params ⇒ Object (private)
Never trust parameters from the scary internet, only allow the white list through.
54 55 56 |
# File 'app/controllers/public_contents_controller.rb', line 54 def public_content_params params.require(:public_content).permit(:otu_id, :topic_id, :content_id, :text) end |
#set_public_content ⇒ Object (private)
Use callbacks to share common setup or constraints between actions.
48 49 50 51 |
# File 'app/controllers/public_contents_controller.rb', line 48 def set_public_content @public_content = PublicContent.with_project_id(sessions_current_project_id).find(params[:id]) @recent_object = @public_content end |
#update ⇒ Object
PATCH/PUT /public_contents/1 PATCH/PUT /public_contents/1.json
24 25 26 27 28 29 30 31 32 33 34 |
# File 'app/controllers/public_contents_controller.rb', line 24 def update respond_to do |format| if @public_content.update(public_content_params) format.html {redirect_back(fallback_location: (request.referer || root_path), notice: 'Public content was successfully updated.')} format.json { render @public_content, status: :ok, location: @public_content } else format.html {redirect_back(fallback_location: (request.referer || root_path), notice: 'Public content was NOT successfully updated.')} format.json { render json: @public_content.errors, status: :unprocessable_entity } end end end |