mongodb-stitch
Version:
[](https://gitter.im/mongodb/stitch?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
42 lines • 1.67 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { CoreStitchAuth, DeviceFields } from "mongodb-stitch-core-sdk";
import { StitchAdminUserFactory } from "./StitchAdminUser";
var StitchAdminAuth = (function (_super) {
__extends(StitchAdminAuth, _super);
function StitchAdminAuth(requestClient, authRoutes, storage) {
return _super.call(this, requestClient, authRoutes, storage) || this;
}
Object.defineProperty(StitchAdminAuth.prototype, "userFactory", {
get: function () {
return new StitchAdminUserFactory();
},
enumerable: true,
configurable: true
});
Object.defineProperty(StitchAdminAuth.prototype, "deviceInfo", {
get: function () {
var info = {};
if (this.hasDeviceId) {
info[DeviceFields.DEVICE_ID] = this.deviceId;
}
info[DeviceFields.APP_ID] = "MongoDB Stitch Swift Admin Client";
return info;
},
enumerable: true,
configurable: true
});
StitchAdminAuth.prototype.onAuthEvent = function () {
};
return StitchAdminAuth;
}(CoreStitchAuth));
export default StitchAdminAuth;
//# sourceMappingURL=StitchAdminAuth.js.map