Skip to content

Commit

Permalink
Add notificationJobs option
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimjio committed Sep 22, 2024
1 parent de26e8d commit 46109d9
Show file tree
Hide file tree
Showing 18 changed files with 547 additions and 484 deletions.
3 changes: 3 additions & 0 deletions src/config/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ namespace config
bool unlock_live_chara = false;
bool notification_tp = false;
bool notification_rp = false;
bool notification_jobs = false;
bool msgpack_notifier = false;
bool msgpack_notifier_request = false;
wstring msgpack_notifier_host = L"http://localhost:4693";
Expand Down Expand Up @@ -339,6 +340,8 @@ if (document.HasMember(L##_name_) && document[L##_name_].Is##_type_())\

GetValue("notificationRp", Bool, notification_rp);

GetValue("notificationJobs", Bool, notification_jobs);

GetValue("msgpackNotifier", Bool, msgpack_notifier);

GetValue("msgpackNotifierRequest", Bool, msgpack_notifier_request);
Expand Down
1 change: 1 addition & 0 deletions src/config/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ namespace config
extern bool unlock_live_chara;
extern bool notification_tp;
extern bool notification_rp;
extern bool notification_jobs;
extern bool msgpack_notifier;
extern bool msgpack_notifier_request;
extern wstring msgpack_notifier_host;
Expand Down
Loading

0 comments on commit 46109d9

Please sign in to comment.