Sha256: 30ced04e5042b16f4ef0df88873d023f041b722e056da790ee2b4fda927d907c
Contents?: true
Size: 508 Bytes
Versions: 2
Compression:
Stored size: 508 Bytes
Contents
# frozen_string_literal: true module Pragma module Operation # Finds the requested record, authorizes it and decorates it. # # @author Alessandro Desantis class Show < Pragma::Operation::Base step Macro::Classes() step Macro::Model(:find_by) step Macro::Policy() step Macro::Decorator() step :respond! def respond!(options) options['result.response'] = Response::Ok.new(entity: options['result.decorator.instance']) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pragma-2.1.1 | lib/pragma/operation/show.rb |
pragma-2.1.0 | lib/pragma/operation/show.rb |