Sha256: 2d0c4239cfd834a37a126635234f6bdb824768140eeeb5d434c33468afed0343

Contents?: true

Size: 784 Bytes

Versions: 236

Compression:

Stored size: 784 Bytes

Contents

module Eco
  module API
    module Organization
      class Preferences

        PREFERENCES_MODEL = {
          show_sidebar: true,
          show_shortcuts: true,
          show_coming_soon: true,
          show_recently_visited_forms: true,
          show_tasks: true
        }.to_json

        PREFERENCES_REFERENCE  = File.join(__dir__, 'preferences_reference.json')

        attr_reader :preferences_model, :preferences_reference
        attr_reader :featured_preferences

        def initialize(init = {})
          @preferences_model = JSON.parse(PREFERENCES_MODEL)
          @preferences_reference = JSON.load(File.open(PREFERENCES_REFERENCE))
          @featured_preferences = @preferences_reference.keys
        end

      end
    end
  end
end

Version data entries

236 entries across 236 versions & 1 rubygems

Version Path
eco-helpers-2.1.2 lib/eco/api/organization/preferences.rb
eco-helpers-2.1.1 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.68 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.67 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.66 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.65 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.64 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.63 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.62 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.61 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.60 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.59 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.58 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.57 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.56 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.55 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.54 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.53 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.52 lib/eco/api/organization/preferences.rb
eco-helpers-2.0.51 lib/eco/api/organization/preferences.rb