forked from OpenNeo/impress
12 lines
137 B
Ruby
12 lines
137 B
Ruby
|
class StaticResource
|
||
|
attr_accessor :id, :name
|
||
|
|
||
|
def self.all
|
||
|
@objects
|
||
|
end
|
||
|
|
||
|
def self.find(id)
|
||
|
@objects[id-1]
|
||
|
end
|
||
|
end
|