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