Actions
Bug #1056
closedRundeck url doesn't work when ldap auth is active
Description
Workaround (as suggested by ohad):
in "app/controllers/application_controller.rb" line 94
replace:
def request_json? request.format.json? end
with:
def request_json? request.format.json? or request.format.yaml? end
Updated by Marcello de Sousa over 13 years ago
extra minor bug:
in "app/controllers/hosts_controller.rb" line 561 (the word "description" is misspelled):
{@host.name => { "desciption" => @host.comment, "hostname...
should be:
{@host.name => { "description" => @host.comment, "hostname...
Updated by Ohad Levy about 13 years ago
- Status changed from New to Closed
- % Done changed from 0 to 100
Applied in changeset 34f64353a05fd0aa987ea18e8d2e36b1b4894efd.
Actions