Class: TentD::API::Groups::GetOne
- Inherits:
-
Middleware
- Object
- Middleware
- TentD::API::Groups::GetOne
- Defined in:
- lib/tentd/api/groups.rb
Instance Method Summary collapse
Methods inherited from Middleware
Methods included from Authorizable
#authorize_env!, #authorize_env?
Constructor Details
This class inherits a constructor from TentD::API::Middleware
Instance Method Details
#action(env) ⇒ Object
64 65 66 67 68 69 |
# File 'lib/tentd/api/groups.rb', line 64 def action(env) if group = Model::Group.first(:id => env.params[:group_id]) env['response'] = group end env end |