7 lines
200 B
Ruby
Executable File
7 lines
200 B
Ruby
Executable File
class CashierTerminal < ApplicationRecord
|
|
has_many :cashier_terminal_by_zones
|
|
has_many :zones, through: :cashier_terminal_by_zones
|
|
|
|
scope :available, -> {where(is_currently_login: false)}
|
|
end
|