mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-02-03 23:11:04 +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
|