{"version":3,"sources":["webpack:///./src/components/authorizations/_AuthResponse.vue?4b89","webpack:///./src/components/authorizations/_AuthResponse.vue?dce8","webpack:///./src/components/authorizations/_AuthResponse.vue","webpack:///./src/components/authorizations/_AuthResponse.vue?d1c8","webpack:///./src/components/authorizations/_AuthResponse.vue?5973"],"names":["render","_vm","this","_h","$createElement","_c","_self","error","staticClass","_v","_s","$t","errorDescription","staticRenderFns","window","localStorage","setItem","$route","query","toString","error_description","component"],"mappings":"yIAAA,yBAA8f,EAAG,G,yCCAjgB,IAAIA,EAAS,WAAa,IAAIC,EAAIC,KAASC,EAAGF,EAAIG,eAAmBC,EAAGJ,EAAIK,MAAMD,IAAIF,EAAG,OAAOE,EAAG,MAAM,CAAe,IAAbJ,EAAIM,MAAaF,EAAG,MAAM,CAACA,EAAG,KAAK,CAACG,YAAY,gBAAgB,CAACP,EAAIQ,GAAGR,EAAIS,GAAGR,KAAKK,UAAUF,EAAG,IAAI,CAACG,YAAY,qBAAqB,CAACP,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIU,GAAG,kCAAkCN,EAAG,IAAI,CAACG,YAAY,qBAAqB,CAACP,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIU,GAAG,mCAAmC,KAAKV,EAAIS,GAAGR,KAAKU,uBAAuBP,EAAG,MAAM,CAACA,EAAG,KAAK,CAACG,YAAY,kBAAkB,CAACP,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIU,GAAG,6BAA6BN,EAAG,IAAI,CAACG,YAAY,uBAAuB,CAACP,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIU,GAAG,6CACrlBE,EAAkB,G,q7DCetB,IAAqB,EAArB,kE,0BACI,EAAAN,MAAQ,GACR,EAAAK,iBAAmB,GAFvB,+IAWQE,OAAOC,aAAaC,QAAQ,UAAW,QAEvCd,KAAKK,MAAQL,KAAKe,OAAOC,MAAMX,MAAQL,KAAKe,OAAOC,MAAMX,MAAMY,WAAa,GAC5EjB,KAAKU,iBAAmBV,KAAKe,OAAOC,MAAME,kBAAoBlB,KAAKe,OAAOC,MAAME,kBAAkBD,WAAa,GAdvH,+IAkBQjB,KAAKK,MAAQ,GACbL,KAAKU,iBAAmB,OAnBhC,GAA0C,QAArB,EAAY,gBADhC,QACoB,WChBqY,I,wBCQtZS,EAAY,eACd,EACArB,EACAa,GACA,EACA,KACA,WACA,MAIa,aAAAQ,E","file":"js/chunk-32e1e03e.75441ba7.js","sourcesContent":["import mod from \"-!../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./_AuthResponse.vue?vue&type=style&index=0&id=9939176e&scoped=true&lang=css&\"; export default mod; export * from \"-!../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./_AuthResponse.vue?vue&type=style&index=0&id=9939176e&scoped=true&lang=css&\"","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(_vm.error != '')?_c('div',[_c('h1',{staticClass:\"error-header\"},[_vm._v(_vm._s(this.error))]),_c('p',{staticClass:\"error-description\"},[_vm._v(_vm._s(_vm.$t(\"authorization.errorMessage\")))]),_c('p',{staticClass:\"error-description\"},[_vm._v(_vm._s(_vm.$t(\"authorization.errorDescription\"))+\": \"+_vm._s(this.errorDescription))])]):_c('div',[_c('h1',{staticClass:\"success-header\"},[_vm._v(_vm._s(_vm.$t(\"authorization.success\")))]),_c('p',{staticClass:\"success-description\"},[_vm._v(_vm._s(_vm.$t(\"authorization.successDescription\")))])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n\n\n\n\n\n\n\n\n\r\nimport { Component, Vue } from \"vue-property-decorator\";\r\n@Component\r\nexport default class AuthResponse extends Vue {\r\n error = \"\" as string;\r\n errorDescription = \"\" as string;\r\n\r\n async mounted() {\r\n // available query string parameters\r\n // const code = this.$route.query.code ? this.$route.query.code.toString() : \"\";\r\n // const state = this.$route.query.state ? this.$route.query.state.toString() : \"\";\r\n // const adminConsent = this.$route.query.admin_consent ? this.$route.query.admin_consent.toString() : \"\";\r\n // const authorizationId = this.$route.query.authorizationId ? this.$route.query.authorizationId.toString() : \"\";\r\n\r\n window.localStorage.setItem(\"refresh\", \"true\");\r\n\r\n this.error = this.$route.query.error ? this.$route.query.error.toString() : \"\";\r\n this.errorDescription = this.$route.query.error_description ? this.$route.query.error_description.toString() : \"\";\r\n }\r\n\r\n beforeUnmount() {\r\n this.error = \"\" as string;\r\n this.errorDescription = \"\" as string;\r\n }\r\n}\r\n","import mod from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/ts-loader/index.js??ref--14-3!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./_AuthResponse.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/ts-loader/index.js??ref--14-3!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./_AuthResponse.vue?vue&type=script&lang=ts&\"","import { render, staticRenderFns } from \"./_AuthResponse.vue?vue&type=template&id=9939176e&scoped=true&\"\nimport script from \"./_AuthResponse.vue?vue&type=script&lang=ts&\"\nexport * from \"./_AuthResponse.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./_AuthResponse.vue?vue&type=style&index=0&id=9939176e&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"9939176e\",\n null\n \n)\n\nexport default component.exports"],"sourceRoot":""}