10 lines
No EOL
357 B
Ruby
10 lines
No EOL
357 B
Ruby
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
|
|
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
|
|
class Houdini::Maintenance
|
|
include ActiveModel::AttributeAssignment
|
|
attr_accessor :active, :token, :page
|
|
|
|
def initialize(attributes={})
|
|
assign_attributes(attributes) if attributes
|
|
end
|
|
end |