You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param {string} options.token - token to rvalidate
90
+
* @param {function} options.callback - function called when reading was completed or errored, providing error object as first param, true or false if expired as second, seconds till expiration as third.(-1 if never expires, 0 - if expired)
* @param {string} options.extendBy - extend token by given time(in ms)(optional) You have to provide extedBy or extendTill. extendBy==0 makes it never die
118
+
* @param {string} options.extendTill - extend till given timestamp. (optional) You have to provide extedBy or extendTill
119
+
* @param {function} options.callback - function called when reading was completed or errored, providing error object as first param and true as second if extending successful
120
+
*/
121
+
authorizer.extend_token=function(options){
122
+
if(!options.token||options.token==""){
123
+
if(typeofoptions.callback==="function")
124
+
options.callback(Error("Token not provided"),null);
Copy file name to clipboardexpand all lines: frontend/express/public/localization/dashboard/dashboard.properties
+1-1
Original file line number
Diff line number
Diff line change
@@ -358,7 +358,7 @@ events.edit.event-visible = Event is visible
358
358
events.edit.event-visible-description = If an event is invisible server will continue to record data for it but it will not be displayed in the user interface.
359
359
events.edit.display-count = Display name for count
360
360
events.edit.display-count-description = A display name for the count property of this event
361
-
events.edit.display-sum = Dsiplay name for sum
361
+
events.edit.display-sum = Display name for sum
362
362
events.edit.display-sum-description = A display name for the optional sum property of this event
363
363
events.edit.display-duration = Display name for duration
364
364
events.edit.display-duration-description = A display name for the optional duration property of this event.
0 commit comments