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

#reload, #rollback, #save

Instance Attribute Details

#companyLWS::Auth::Company

Returns the company the player configuration belongs to.

Returns:



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

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



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

attribute :company_id

#descriptionString?

Returns the description of the player configuration.

Returns:

  • (String, nil)

    the description of the player configuration



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

attribute :description

#nameString

Returns the name of the player configuration.

Returns:

  • (String)

    the name of the player configuration



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

attribute :name

#playersArray<Player>

Returns the players the configuration is used for.

Returns:

  • (Array<Player>)

    the players the configuration is used for



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

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:



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

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



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

attribute :predefined_configuration_id

#settingsPlayer::Configuration::Setting

Returns the settings of the player configuration.

Returns:



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

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