Esempio n. 1
0
        public FeatureController(ICredAuthentication credAuthentication)
        {
            _credAuthentication = credAuthentication; //the service is injected by the GL app, the parameters are passed in on the method call

            _apiUrl       = appSettings["okta.ApiUrl"];
            _apiToken     = appSettings["okta.ApiToken"];
            _oktaUserMgmt = new OktaUserMgmt(_apiUrl, _apiToken);
            _userdomain   = appSettings["user.domain"];
        }