| 1234567891011121314151617181920212223242526 |
- 'use strict';
- function Notification (crowi)
- {
- this.crowi = crowi;
- this.config = crowi.getConfig();
- }
- Notification.prototype.hasSlackConfig = function()
- {
- if (!this.config.notification['slack']) {
- return false;
- }
- //var config = ;
- };
- Notification.prototype.noitfyByEmail = function()
- {
- };
- Notification.prototype.noitfyByChat = function()
- {
- };
- module.exports = Notification;
|