summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/acl_endpoint.rb
Commit message (Collapse)AuthorAgeFilesLines
* Optimize requires for non-omnibus installsTim Smith2020-08-121-1/+1
| | | | | | require is quite slow in Ruby and doing requires for things you've already required is also slow. We've used this simple hack in Chef to speed up our requires. In the omnibus installs we patch how rubygems works to make this somewhat pointless, but this will help non-omnibus installs Signed-off-by: Tim Smith <tsmith@chef.io>
* Substitute require for require_relativeTim Smith2019-12-291-2/+2
| | | | | | require_relative is significantly faster and should be used when available. Signed-off-by: Tim Smith <tsmith@chef.io>
* Apply ChefstyleTim Smith2019-12-291-0/+1
| | | | | | Autocorrect with the latest chefstyle Signed-off-by: Tim Smith <tsmith@chef.io>
* fixes for new chefstyleLamont Granquist2018-07-031-1/+1
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* remove hashrocket syntaxlcg/remove-hashrocketsLamont Granquist2018-06-261-1/+1
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* remove create additions flaglcg/remove-create-additionsLamont Granquist2016-09-021-2/+2
| | | | | | FFI_Yajl has never implemented this flag Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Revert "remove create additions flag"Lamont Granquist2016-09-021-2/+2
| | | | This reverts commit c674dfeacf773579a2eb56cb3c02428268452b50.
* remove create additions flagLamont Granquist2016-09-021-2/+2
| | | | | | FFI_Yajl has never implemented this flag Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* ChefStyletm/styleThom May2016-07-291-6/+6
| | | | Signed-off-by: Thom May <thom@may.lt>
* Removing 'json' gem dependency, replacing with 'ffi-yajl'tball/chef-zero-yajl-replace-jsontyler-ball2014-09-261-4/+4
|
* Add organization, acl, group, container rspec macrosrspec_enterpriseJohn Keiser2014-08-261-2/+2
|
* Make acls endpoints return 405 for disallowed methodsJohn Keiser2014-08-221-13/+0
|
* Move all defaults to DefaultCreator, calculate on fly,John Keiser2014-08-221-5/+8
| | | | remember ownership
* Delete acls when object is deletedJohn Keiser2014-08-221-7/+1
|
* Clients have access to themselvesJohn Keiser2014-08-221-1/+1
|
* /organizations/ORG/organization/_acl/create should 404John Keiser2014-08-221-0/+4
|
* Make _acl wrong method raise 404 instead of 405John Keiser2014-08-221-0/+9
|
* Make the requestor the one who "created" the object.John Keiser2014-08-221-1/+1
| | | | No sense making ACLs for it all the time.
* Add global user acls endpointJohn Keiser2014-07-231-0/+2
|
* Add ACL putJohn Keiser2014-07-231-8/+17
|
* Add */_acl/PERM GET endpointJohn Keiser2014-07-231-0/+30