lib/rpush/client/redis/app.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Rpush
  module Client
    module Redis
      class App
        include Modis::Model
        self.namespace = 'apps'

        attribute :name, :string
        attribute :environment, :string
        attribute :certificate, :string
        attribute :password, :string
        attribute :connections, :integer, default: 1
        attribute :auth_key, :string
        attribute :client_id, :string
        attribute :client_secret, :string
        attribute :api_key, :string
        attribute :apn_key, :string
        attribute :apn_key_id, :string
        attribute :team_id, :string
        attribute :bundle_id, :string
        attribute :feedback_enabled, :boolean, default: true

        index :name

        validates :name, presence: true
        validates_numericality_of :connections, greater_than: 0, only_integer: true
      end
    end
  end
end