Sha256: dd2f4593cc1e8aa573940acf6c326184e9af546eba8a49e7cabeca477acd1661

Contents?: true

Size: 1.17 KB

Versions: 5

Compression:

Stored size: 1.17 KB

Contents

# frozen_string_literal: true

module Alchemy
  class Api::ContentsController < Api::BaseController
    # Returns all contents as json object
    #
    # You can either load all or only these for :element_id param
    #
    def index
      # Fix for cancancan not able to merge multiple AR scopes for logged in users
      if can? :manage, Alchemy::Content
        @contents = Content.all
      else
        @contents = Content.accessible_by(current_ability, :index)
      end
      if params[:element_id].present?
        @contents = @contents.where(element_id: params[:element_id])
      end
      respond_with @contents
    end

    # Returns a json object for content
    #
    # You can either load it from :id param
    # or even more useful via passing the element id and the name of the content
    #
    #   $ bin/rake routes
    #
    # for more infos on how the url looks like.
    #
    def show
      if params[:id]
        @content = Content.find(params[:id])
      elsif params[:element_id] && params[:name]
        @content = Content.find_by!(element_id: params[:element_id], name: params[:name])
      end
      authorize! :show, @content
      respond_with @content
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
alchemy_cms-4.1.2 app/controllers/alchemy/api/contents_controller.rb
alchemy_cms-4.1.1 app/controllers/alchemy/api/contents_controller.rb
alchemy_cms-4.1.0 app/controllers/alchemy/api/contents_controller.rb
alchemy_cms-4.1.0.rc1 app/controllers/alchemy/api/contents_controller.rb
alchemy_cms-4.1.0.beta app/controllers/alchemy/api/contents_controller.rb