Sha256: 558fe4e4ed87a01add3175fac7c9c04e3d6ed062124d4e144fec8ecd805f120c
Contents?: true
Size: 987 Bytes
Versions: 5
Compression:
Stored size: 987 Bytes
Contents
# frozen_string_literal: true module Alchemy class Api::ElementsController < Api::BaseController # Returns all elements as json object # # You can either load all or only these for :page_id param # # If you want to only load a specific type of element pass ?named=an_element_name # def index @elements = Element.not_nested # Fix for cancancan not able to merge multiple AR scopes for logged in users if cannot? :manage, Alchemy::Element @elements = @elements.accessible_by(current_ability, :index) end if params[:page_id].present? @elements = @elements.where(page_id: params[:page_id]) end if params[:named].present? @elements = @elements.named(params[:named]) end respond_with @elements end # Returns a json object for element # def show @element = Element.find(params[:id]) authorize! :show, @element respond_with @element end end end
Version data entries
5 entries across 5 versions & 1 rubygems