{ "version": 3, "sources": ["src/app/admin/admin-users/admin-users-base/admin-users-base-component.ts", "src/app/admin/admin-users/admin-send-user-new-password/admin-send-user-new-password.component.ts", "src/app/admin/admin-users/admin-send-user-new-password/admin-send-user-new-password.component.html", "src/app/admin/admin-users/admin-change-user-password/admin-change-user-password.component.ts", "src/app/admin/admin-users/admin-change-user-password/admin-change-user-password.component.html", "src/app/admin/admin-users/admin-manage-user-permissions/admin-manage-user-permissions.component.ts", "src/app/admin/admin-users/admin-manage-user-permissions/admin-manage-user-permissions.component.html", "src/app/admin/admin-users/admin-manage-user-login/admin-manage-user-login.component.ts", "src/app/admin/admin-users/admin-manage-user-login/admin-manage-user-login.component.html", "src/app/admin/admin-users/admin-edit-user-profile/admin-edit-user-profile.component.ts", "src/app/admin/admin-users/admin-edit-user-profile/admin-edit-user-profile.component.html", "src/app/admin/admin-users/admin-login-as/admin-login-as.component.ts", "src/app/admin/admin-users/admin-login-as/admin-login-as.component.html", "src/app/admin/admin-users/admin-manage-user-certs/admin-manage-user-certs.component.ts", "src/app/admin/admin-users/admin-manage-user-certs/admin-manage-user-certs.component.html", "src/app/admin/admin-feedback/admin-feedback-grid/admin-feedback-grid.component.ts", "src/app/shared/components/generic/generic-kendo-grid/generic-kendo-grid.component.html", "src/app/admin/admin-feedback/admin-feedback-details/admin-feedback-details.component.ts", "src/app/admin/admin-feedback/admin-feedback-details/admin-feedback-details.component.html", "src/app/admin/admin-feedback/admin-feedback-list/admin-feedback-list.component.ts", "src/app/admin/admin-feedback/admin-feedback-list/admin-feedback-list.component.html", "src/app/admin/admin-feeds/admin-feed-parse-qr/admin-feed-parse-qr.component.ts", "src/app/admin/admin-feeds/admin-feed-parse-qr/admin-feed-parse-qr.component.html", "src/app/admin/admin-feeds/admin-feed-view-transfer/admin-feed-view-transfer.component.ts", "src/app/shared/components/generic/generic-kendo-grid/generic-kendo-grid.component.html", "src/app/admin/admin-feeds/admin-feed-gen-qr/admin-feed-gen-qr.component.ts", "src/app/admin/admin-feeds/admin-feed-gen-qr/admin-feed-gen-qr.component.html", "src/app/admin/admin.component.ts", "src/app/admin/admin.component.html", "src/app/admin/admin-routing.module.ts", "src/app/admin/admin.module.ts"], "sourcesContent": ["import { Component, Inject, Input } from '@angular/core';\r\nimport {\r\n AdminUserTabs,\r\n EnvConfigurationService,\r\n HelpService,\r\n IUsersExtDto,\r\n NotifierService,\r\n ControlStateDirective,\r\n IAppConfiguration,\r\n} from '@scb-shared';\r\nimport { NGXLogger } from 'ngx-logger';\r\n\r\n@Component({\n selector: 'app-admin-users-base-component',\n template: '',\n standalone: false\n})\r\nexport class AdminUsersBaseComponent extends ControlStateDirective {\r\n public isClassified = false;\r\n protected baseUser: IUsersExtDto = null;\r\n protected previousUser: IUsersExtDto = null;\r\n protected config: IAppConfiguration;\r\n\r\n constructor(\r\n @Inject(String) protected readonly tab: AdminUserTabs,\r\n @Inject(String) protected defaultTitle: string,\r\n protected readonly notifierService: NotifierService,\r\n protected readonly envConfigurationService: EnvConfigurationService,\r\n protected readonly logger: NGXLogger,\r\n protected readonly helpService: HelpService\r\n ) {\r\n super(logger);\r\n this.config = this.envConfigurationService.getConfig();\r\n this.isClassified = this.config.isClassified;\r\n }\r\n\r\n @Input() set selectedUser(value: IUsersExtDto) {\r\n if (this.baseUser !== value) {\r\n if (this.baseUser && value && this.baseUser.userId === value.userId) {\r\n return;\r\n }\r\n this.previousUser = this.baseUser;\r\n this.baseUser = value;\r\n this.selectedUserChangedCallback();\r\n }\r\n }\r\n\r\n get selectedUser(): IUsersExtDto {\r\n return this.baseUser;\r\n }\r\n\r\n public get caption(): string {\r\n if (this.selectedUser) {\r\n return `${this.defaultTitle} for ${this.selectedUser.userName}`;\r\n } else {\r\n return 'Select a user';\r\n }\r\n }\r\n\r\n public get wrapperClass(): string {\r\n if (!this.selectedUser) {\r\n return 'no-data-wrapper';\r\n }\r\n return this.loadingWrapperClass;\r\n }\r\n\r\n public setHelpTopic(helpTopicId: string): void {\r\n this.helpService.helpTopicId = helpTopicId;\r\n }\r\n\r\n protected selectedUserChangedCallback = (): void => {};\r\n}\r\n", "import { Component, OnInit } from '@angular/core';\r\nimport { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';\r\nimport {\r\n AuthService,\r\n EnvConfigurationService,\r\n HelpService,\r\n IChangeSecurityQuestionModel,\r\n NotifierService,\r\n} from '@scb-shared';\r\nimport { NGXLogger } from 'ngx-logger';\r\nimport { AdminUsersBaseComponent } from '../admin-users-base/admin-users-base-component';\r\n\r\n@UntilDestroy()\r\n@Component({\n selector: 'app-admin-send-user-new-password',\n templateUrl: './admin-send-user-new-password.component.html',\n standalone: false\n})\r\nexport class AdminSendUserNewPasswordComponent extends AdminUsersBaseComponent implements OnInit {\r\n public isClassified = false;\r\n public buttonDisabled = false;\r\n public clickProcessing = false;\r\n\r\n constructor(\r\n protected readonly notifierService: NotifierService,\r\n protected readonly envConfigurationService: EnvConfigurationService,\r\n protected readonly logger: NGXLogger,\r\n protected readonly helpService: HelpService,\r\n private readonly authService: AuthService\r\n ) {\r\n super(\r\n 'send-new-pwd',\r\n 'Send new password',\r\n notifierService,\r\n envConfigurationService,\r\n logger,\r\n helpService\r\n );\r\n }\r\n\r\n public get emailAddress(): string {\r\n if (this.selectedUser) {\r\n return this.isClassified\r\n ? this.selectedUser.eMailAddressClassified\r\n : this.selectedUser.eMailAddressUnclassified;\r\n } else {\r\n return '';\r\n }\r\n }\r\n\r\n public get sendEnabled(): boolean {\r\n const email = this.emailAddress;\r\n if (email && email.indexOf('@') > -1) {\r\n return true;\r\n } else {\r\n return false;\r\n }\r\n }\r\n\r\n public get emailAddressType(): string {\r\n return this.isClassified ? 'classified/secure' : 'unclassified/open';\r\n }\r\n\r\n public get instructions(): string {\r\n if (this.sendEnabled) {\r\n return (\r\n 'Click the button below to send a temporary password to the user on their' +\r\n ` ${this.emailAddressType} email at ${this.emailAddress}. ` +\r\n 'The user will need to reset their password after logging in.'\r\n );\r\n } else {\r\n return `Select a user first or ensure the user has a ${this.emailAddressType} on file.`;\r\n }\r\n }\r\n\r\n ngOnInit(): void {\r\n const config = this.envConfigurationService.getConfig();\r\n this.isClassified = config.isClassified;\r\n }\r\n\r\n public sendNewPassword(): void {\r\n this.clickProcessing = true;\r\n const postData = {\r\n userId: this.selectedUser.userId,\r\n userName: this.selectedUser.userName,\r\n question: '',\r\n answer: '',\r\n } as IChangeSecurityQuestionModel;\r\n this.authService\r\n .sendNewPassword(true, postData)\r\n .pipe(untilDestroyed(this))\r\n .subscribe((val) => {\r\n const message = val.success\r\n ? `Password sent to ${this.selectedUser.userName} at ${this.emailAddress}.`\r\n : val.message;\r\n const title = val.success ? 'Password Sent' : 'Error Sending Password';\r\n this.notifierService.successOrError(\r\n val.success,\r\n message,\r\n title,\r\n null,\r\n false,\r\n false,\r\n true\r\n );\r\n this.clickProcessing = false;\r\n });\r\n }\r\n\r\n protected selectedUserChangedCallback = (): void => {\r\n this.buttonDisabled = !this.sendEnabled;\r\n };\r\n}\r\n", "
{{instructions}}
\r\n\r\n", "import { AfterViewInit, Component, ViewChild } from '@angular/core';\r\nimport {\r\n EnvConfigurationService,\r\n HelpService,\r\n IChangePasswordModel,\r\n IPasswordComplexity,\r\n ManagePasswordComponent,\r\n NotifierService,\r\n SuccessErrorCancel,\r\n} from '@scb-shared';\r\nimport { NGXLogger } from 'ngx-logger';\r\nimport { AdminUsersBaseComponent } from '../admin-users-base/admin-users-base-component';\r\n\r\n@Component({\n selector: 'app-admin-change-user-password',\n templateUrl: './admin-change-user-password.component.html',\n standalone: false\n})\r\nexport class AdminChangeUserPasswordComponent\r\n extends AdminUsersBaseComponent\r\n implements AfterViewInit\r\n{\r\n @ViewChild('managePassword') managePassword: ManagePasswordComponent;\r\n public passwordComplexity: IPasswordComplexity;\r\n\r\n constructor(\r\n protected readonly notifierService: NotifierService,\r\n protected readonly envConfigurationService: EnvConfigurationService,\r\n protected readonly logger: NGXLogger,\r\n protected readonly helpService: HelpService\r\n ) {\r\n super(\r\n 'change-pwd',\r\n 'Change password',\r\n notifierService,\r\n envConfigurationService,\r\n logger,\r\n helpService\r\n );\r\n }\r\n\r\n public ngAfterViewInit(): void {\r\n this.setFormData();\r\n this.managePassword.focus();\r\n }\r\n\r\n public actionComplete(value: SuccessErrorCancel): void {\r\n if (value === 'success') {\r\n this.setFormData();\r\n }\r\n }\r\n\r\n protected selectedUserChangedCallback = (): void => {\r\n this.initComponent();\r\n };\r\n\r\n protected initComponent(): void {\r\n this.setControlStateLoading();\r\n if (this.config) {\r\n const pwdConfig = this.config.passwordComplexity;\r\n this.passwordComplexity = pwdConfig;\r\n this.passwordComplexity.previousPasswordsToCompare = 0; // don't force comparing passwords\r\n }\r\n this.setControlStateNeutral();\r\n }\r\n\r\n protected setFormData(): void {\r\n const formData = {\r\n userId: this.selectedUser?.userId,\r\n userName: this.selectedUser?.userName,\r\n oldPassword: '',\r\n newPassword: '',\r\n forceExpiration: true,\r\n } as IChangePasswordModel;\r\n\r\n this.managePassword.formData = formData;\r\n }\r\n}\r\n", "\r\n Set the user's password to a one-time password in the form below. The user will need to reset their\r\n password themselves after logging in.\r\n
\r\n\r\nView and manage the user's login information below.
\r\n\r\n \r\n | \r\n{{userStat.value}} | \r\n\r\n \r\n | \r\n
Edit the user's profile. Note that any change in company or agency affiliation will delete all of the user's permissions\r\n and access to limited blind sites.\r\n
\r\n{{instructions}}
\r\n\r\n", "import { Component, ViewEncapsulation } from '@angular/core';\r\nimport { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';\r\nimport {\r\n EnvConfigurationService,\r\n HelpService,\r\n ICertificateDetailsDto,\r\n NotifierService,\r\n UserService,\r\n} from '@scb-shared';\r\nimport { NGXLogger } from 'ngx-logger';\r\nimport { AdminUsersBaseComponent } from '../admin-users-base/admin-users-base-component';\r\n\r\n@UntilDestroy()\r\n@Component({\n selector: 'app-admin-manage-user-certs',\n templateUrl: './admin-manage-user-certs.component.html',\n encapsulation: ViewEncapsulation.None,\n standalone: false\n})\r\nexport class AdminManageUserCertsComponent extends AdminUsersBaseComponent {\r\n public userCerts: ICertificateDetailsDto[];\r\n // eslint-disable-next-line @typescript-eslint/quotes\r\n public pageCaption = \"View and manage the user's certificates below.\";\r\n\r\n constructor(\r\n protected readonly notifierService: NotifierService,\r\n protected readonly envConfigurationService: EnvConfigurationService,\r\n protected readonly logger: NGXLogger,\r\n protected readonly helpService: HelpService,\r\n private readonly userService: UserService\r\n ) {\r\n super(\r\n 'manage-certs',\r\n 'Manage certificates',\r\n notifierService,\r\n envConfigurationService,\r\n logger,\r\n helpService\r\n );\r\n }\r\n\r\n protected selectedUserChangedCallback = (): void => {\r\n this.initComponent();\r\n };\r\n\r\n private initComponent(): void {\r\n if (!this.selectedUser) {\r\n return;\r\n }\r\n\r\n // we have a user - get their certs\r\n this.getData();\r\n }\r\n\r\n // #region Ng Component implements\r\n\r\n getData(): void {\r\n this.setControlStateLoading();\r\n this.userService\r\n .getUserCertificatesDetails(this.selectedUser.userId)\r\n .pipe(untilDestroyed(this))\r\n .subscribe((val) => {\r\n if (!val || val.length === 0) {\r\n this.pageCaption = 'This user has no registered PKI certificates.';\r\n }\r\n this.userCerts = val;\r\n this.setControlStateNeutral();\r\n });\r\n }\r\n\r\n // #endregion\r\n}\r\n", "{{pageCaption}}
\r\nType: {{dataItem.isBug ? 'Bug Report' : 'General Comment'}}
\r\n{{dataItem.comment}}
\r\nCreated on: {{dataItem.dateCreatedUtc}}
\r\n Toggle Client\r\n Details\r\n\r\n {{dataItem.formattedFeedbackNumber}}\r\nStatus: {{dataItem.itemStatus}}\r\nFrom: {{dataItem.email}} \r\nType: {{dataItem.isBug ? 'Bug Report' : 'General Comment'}} \r\nCreated: {{dataItem.dateCreatedUtc | date:formatDateTimeMilitary}} \r\n | \r\n \r\n Comments & Response\r\n{{dataItem.comment}} | \r\n
Click the button below to enter the user's information and send them a signup link to complete\r\n the account registration process. You will essentially be entering the signup flow on behalf of\r\n the user.
\r\n \r\nMiscellaneous Actions
\r\nHere you can quickly approve, disable, and enable users, as well as set their\r\n attributes, particularly who are administrators and who can upload response\r\n documents.
\r\nUse this screen to edit the capability statement(s) and set the attributes about the\r\n organization.
\r\n{{orgEmailDomainsCaption}}
\r\nMiscellaneous Actions
\r\nCreate delete/deactivate org & users functionality here
\r\nvarious organizational reports (documents submitted, active users, last activity,\r\n etc)
\r\n{{rolePermConfig.caption}}
\r\nToggle various system settings below.
\r\nUnder Construction - API Keys
\r\nEnter your string for encoding and then press the button to create the code.
\r\nEnter a message and settings to test the email server here.
\r\nPerform various system actions below.
\r\nView sensitive server settings here.
\r\n{{samSearchErrorMessage}}
\r\nUse this screen to search for contact records that are not associated with a user. The primary\r\n purpose of\r\n this screen is to clear out duplicate SSNs allowing users to register if they have an orphaned\r\n contact\r\n record.
\r\nEnter one or more criteria below to filter/search for access requests (workflow). This only searches ARC\r\n 3.0 requests.
\r\n\r\nEnter one or more criteria below to filter/search for service requests.
\r\n\r\n