Class: LWS::DigitalSignage::Player::Configuration

Inherits:
Generic::Model
  • Object
show all
Defined in:
lib/lws/apps/digital_signage.rb

Overview

The player configuration class

Defined Under Namespace

Classes: Setting

Instance Attribute Summary collapse

Attributes inherited from Generic::Model

#created_at, #id, #updated_at, #url, #url_html

Method Summary

Methods inherited from Generic::Model

#deep_dup, #dig, #reload, #rollback, #save

Instance Attribute Details

#companyLWS::Auth::Company

Returns the company the player configuration belongs to.

Returns:



978
# File 'lib/lws/apps/digital_signage.rb', line 978

belongs_to :company, class_name: "LWS::Auth::Company"

#company_idInteger

Returns the ID of the company the player configuration belongs to.

Returns:

  • (Integer)

    the ID of the company the player configuration belongs to



982
# File 'lib/lws/apps/digital_signage.rb', line 982

attribute :company_id

#descriptionString?

Returns the description of the player configuration.

Returns:

  • (String, nil)

    the description of the player configuration



986
# File 'lib/lws/apps/digital_signage.rb', line 986

attribute :description

#nameString

Returns the name of the player configuration.

Returns:

  • (String)

    the name of the player configuration



990
# File 'lib/lws/apps/digital_signage.rb', line 990

attribute :name

#playersArray<Player>

Returns the players the configuration is used for.

Returns:

  • (Array<Player>)

    the players the configuration is used for



994
995
# File 'lib/lws/apps/digital_signage.rb', line 994

has_many :players, class_name: "LWS::DigitalSignage::Player",
uri: "player/configurations/:configuration_id/players(/:id)"

#predefined_configurationPlayer::PredefinedConfiguration?

Returns the predefined configuration that is used as a bases for the configuration.

Returns:



1000
1001
# File 'lib/lws/apps/digital_signage.rb', line 1000

belongs_to :predefined_configuration, class_name: "LWS::DigitalSignage::Player::PredefinedConfiguration",
uri: "player/predefined_configurations/:id"

#predefined_configuration_idInteger?

Returns the ID of the predefined configuration that is used as a basis for the player configuration.

Returns:

  • (Integer, nil)

    the ID of the predefined configuration that is used as a basis for the player configuration



1006
# File 'lib/lws/apps/digital_signage.rb', line 1006

attribute :predefined_configuration_id

#settingsPlayer::Configuration::Setting

Returns the settings of the player configuration.

Returns:



1010
1011
# File 'lib/lws/apps/digital_signage.rb', line 1010

has_many :settings, class_name: "LWS::DigitalSignage::Player::Configuration::Setting",
uri: "player/configurations/:configuration_id/settings(/:id)"