mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 09:21:25 +00:00
8 lines
113 B
Ruby
8 lines
113 B
Ruby
|
module Controllers
|
||
|
module JsonHelpers
|
||
|
def json
|
||
|
@json ||= JSON.parse(response.body)
|
||
|
end
|
||
|
end
|
||
|
end
|