##// END OF EJS Templates
initial port of implab/web
initial port of implab/web

File last commit:

r0:7110eac54b19 v1.0.0 default
r0:7110eac54b19 v1.0.0 default
Show More
AuthCode.js
13 lines | 240 B | application/javascript | JavascriptLexer
cin
initial port of implab/web
r0 /**
* Created by andrei on 22.08.16.
*/
define(['dojo/_base/declare'], function(declare){
let AuthCode = declare(null, {
});
AuthCode.SUCCSESS = 0;
AuthCode.INCMPLETE = 1;
AuthCode.FAIL = 2;
return AuthCode;
});