Sha256: 80a147c4bf2087cc223e149d8649b958248ebc6c769b40395e93860700dae8e8
Contents?: true
Size: 576 Bytes
Versions: 17
Compression:
Stored size: 576 Bytes
Contents
module OpenStax module Accounts module Dev class AccountsSearch < OpenStax::Accounts::AccountsSearch paramify :search do attribute :type, type: String attribute :query, type: String attribute :order_by, type: String attribute :page, type: Integer attribute :per_page, type: Integer end protected def initialize @min_characters = nil @max_items = nil end def authorized? !Rails.env.production? end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems