@@ -134,27 +134,27 @@ export default class {
134
134
this . removeListener = listenerManager . removeListener . bind ( listenerManager ) ;
135
135
this . removeAllListeners = listenerManager . removeAllListeners . bind ( listenerManager ) ;
136
136
137
- /** channel groups * */
137
+ /* channel groups */
138
138
this . channelGroups = {
139
139
listGroups : endpointCreator . bind ( this , modules , listChannelGroupsConfig ) ,
140
140
listChannels : endpointCreator . bind ( this , modules , listChannelsInChannelGroupConfig ) ,
141
141
addChannels : endpointCreator . bind ( this , modules , addChannelsChannelGroupConfig ) ,
142
142
removeChannels : endpointCreator . bind ( this , modules , removeChannelsChannelGroupConfig ) ,
143
143
deleteGroup : endpointCreator . bind ( this , modules , deleteChannelGroupConfig )
144
144
} ;
145
- /** push * */
145
+ /* push */
146
146
this . push = {
147
147
addChannels : endpointCreator . bind ( this , modules , addPushChannelsConfig ) ,
148
148
removeChannels : endpointCreator . bind ( this , modules , removePushChannelsConfig ) ,
149
149
deleteDevice : endpointCreator . bind ( this , modules , removeDevicePushConfig ) ,
150
150
listChannels : endpointCreator . bind ( this , modules , listPushChannelsConfig )
151
151
} ;
152
- /** presence * */
152
+ /* presence */
153
153
this . hereNow = endpointCreator . bind ( this , modules , presenceHereNowConfig ) ;
154
154
this . whereNow = endpointCreator . bind ( this , modules , presenceWhereNowEndpointConfig ) ;
155
155
this . getState = endpointCreator . bind ( this , modules , presenceGetStateConfig ) ;
156
156
this . setState = subscriptionManager . adaptStateChange . bind ( subscriptionManager ) ;
157
- /** PAM * */
157
+ /* PAM */
158
158
this . grant = endpointCreator . bind ( this , modules , grantEndpointConfig ) ;
159
159
this . audit = endpointCreator . bind ( this , modules , auditEndpointConfig ) ;
160
160
//
@@ -195,14 +195,16 @@ export default class {
195
195
this . encrypt = crypto . encrypt . bind ( crypto ) ;
196
196
this . decrypt = crypto . decrypt . bind ( crypto ) ;
197
197
198
- /** config * */
198
+ /* config */
199
199
this . getAuthKey = modules . config . getAuthKey . bind ( modules . config ) ;
200
200
this . setAuthKey = modules . config . setAuthKey . bind ( modules . config ) ;
201
201
this . setCipherKey = modules . config . setCipherKey . bind ( modules . config ) ;
202
202
this . getUUID = modules . config . getUUID . bind ( modules . config ) ;
203
203
this . setUUID = modules . config . setUUID . bind ( modules . config ) ;
204
204
this . getFilterExpression = modules . config . getFilterExpression . bind ( modules . config ) ;
205
205
this . setFilterExpression = modules . config . setFilterExpression . bind ( modules . config ) ;
206
+
207
+ this . setHeartbeatInterval = modules . config . setHeartbeatInterval . bind ( modules . config ) ;
206
208
}
207
209
208
210
0 commit comments