Sha256: dea566a14c65e806308a9deab07ca62908ac878fcb97fafcedf2dfc8cffa5acc
Contents?: true
Size: 1 KB
Versions: 47
Compression:
Stored size: 1 KB
Contents
# frozen_string_literal: true module Decidim class AuthorizationModalsController < Decidim::ApplicationController helper_method :authorizations, :authorize_action_path layout false def show; end private def resource @resource ||= if params[:resource_name] && params[:resource_id] manifest = Decidim.find_resource_manifest(params[:resource_name]) manifest&.resource_scope(current_component)&.find_by(id: params[:resource_id]) end end def current_component @current_component ||= Decidim::Component.find(params[:component_id]) end def authorization_action @authorization_action ||= params[:authorization_action] end def authorize_action_path(handler_name) authorizations.status_for(handler_name).current_path(redirect_url: URI(request.referer).path) end def authorizations @authorizations ||= action_authorized_to(authorization_action, resource: resource) end end end
Version data entries
47 entries across 47 versions & 1 rubygems