Skip to content

Commit

Permalink
Version 0.9.55
Browse files Browse the repository at this point in the history
- Fixed typo in `job_read_only` implementation.
  • Loading branch information
jhuckaby committed Jul 16, 2024
1 parent 6bd3d90 commit 801d103
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/api/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ module.exports = Class.create({
delete params.session_id;

// if user has special job_read_only privilege, remove all param keys (no customization)
if (!user.privileges.job_read_only) params = {};
if (user.privileges.job_read_only) params = {};

// allow for &params/foo=bar and the like
for (var key in params) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Cronicle",
"version": "0.9.54",
"version": "0.9.55",
"description": "A simple, distributed task scheduler and runner with a web based UI.",
"author": "Joseph Huckaby <[email protected]>",
"homepage": "https://github.com/jhuckaby/Cronicle",
Expand Down

0 comments on commit 801d103

Please sign in to comment.