Files
duty-teller/webapp/js/constants.js
Nikolay Tatarinov 8091c608e8
All checks were successful
CI / lint-and-test (push) Successful in 23s
feat: add group duty pin notification feature
- Introduced a new configuration option `DUTY_PIN_NOTIFY` to control whether the bot re-pins the duty message when updated, providing notifications to group members.
- Updated the architecture documentation to reflect the new functionality of re-pinning duty messages.
- Enhanced the `.env.example` file to include the new configuration option with a description.
- Added tests to verify the behavior of the new refresh pin command and its integration with the existing group duty pin functionality.
- Updated internationalization messages to include help text for the new `/refresh_pin` command.
2026-02-23 10:51:47 +03:00

8 lines
177 B
JavaScript

/**
* Application constants and static labels.
*/
export const FETCH_TIMEOUT_MS = 15000;
export const RETRY_DELAY_MS = 800;
export const RETRY_AFTER_ACCESS_DENIED_MS = 1200;