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