mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
14 lines
183 B
Ruby
14 lines
183 B
Ruby
module API
|
|
module Caching
|
|
class StoredRepresenter
|
|
def initialize(json)
|
|
@json = json
|
|
end
|
|
|
|
def to_json(*_args)
|
|
@json
|
|
end
|
|
end
|
|
end
|
|
end
|