class Session

Attributes

id[RW]
workshop_id[RW]

Public Class Methods

new(id) click to toggle source
# File actionview/test/template/url_helper_test.rb, line 864
def initialize(id)
  @id = id
end

Public Instance Methods

persisted?() click to toggle source
# File actionview/test/template/url_helper_test.rb, line 868
def persisted?
  id.present?
end
to_s() click to toggle source
# File actionview/test/template/url_helper_test.rb, line 872
def to_s
  id.to_s
end