##// END OF EJS Templates
the build script is updated
the build script is updated

File last commit:

r0:7110eac54b19 v1.0.0 default
r2:b698f0e8883c default
Show More
NoneSecData.js
17 lines | 418 B | application/javascript | JavascriptLexer
define([
"dojo/_base/declare",
"./SecData"
], function (declare, SecData) {
return declare(SecData, {
doAuth: function (/*challenge*/) {
return {
code: SecData.AUTH_SUCCESS
};
},
getAuthState: function () {
return SecData.AUTH_SUCCESS;
},
getAuthType: function () {
return "none";
}
});
});