mirror of
https://github.com/bitwarden/web
synced 2025-12-15 07:43:16 +00:00
Compare commits
10 Commits
feature/cl
...
bug/ps-136
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
63aa95d55b | ||
|
|
eab8908206 | ||
|
|
eab478da0c | ||
|
|
5a78853de5 | ||
|
|
51ee899c5e | ||
|
|
26065d3542 | ||
|
|
b4ddce1da2 | ||
|
|
6ee47f0057 | ||
|
|
5094a710ac | ||
|
|
67ebf88837 |
2
jslib
2
jslib
Submodule jslib updated: 3bf25edd3e...3cb94623e2
@@ -122,17 +122,20 @@ export abstract class BaseEventsComponent {
|
|||||||
const userId = r.actingUserId == null ? r.userId : r.actingUserId;
|
const userId = r.actingUserId == null ? r.userId : r.actingUserId;
|
||||||
const eventInfo = await this.eventService.getEventInfo(r);
|
const eventInfo = await this.eventService.getEventInfo(r);
|
||||||
const user = this.getUserName(r, userId);
|
const user = this.getUserName(r, userId);
|
||||||
|
const userName = user != null ? user.name : this.i18nService.t("unknown");
|
||||||
|
|
||||||
return new EventView({
|
return new EventView({
|
||||||
message: eventInfo.message,
|
message: eventInfo.message,
|
||||||
humanReadableMessage: eventInfo.humanReadableMessage,
|
humanReadableMessage: eventInfo.humanReadableMessage,
|
||||||
appIcon: eventInfo.appIcon,
|
appIcon: eventInfo.appIcon,
|
||||||
appName: eventInfo.appName,
|
appName: eventInfo.appName,
|
||||||
userId: userId,
|
userId: userId,
|
||||||
userName: user != null ? user.name : this.i18nService.t("unknown"),
|
userName: r.installationId != null ? `Installation: ${r.installationId}` : userName,
|
||||||
userEmail: user != null ? user.email : "",
|
userEmail: user != null ? user.email : "",
|
||||||
date: r.date,
|
date: r.date,
|
||||||
ip: r.ipAddress,
|
ip: r.ipAddress,
|
||||||
type: r.type,
|
type: r.type,
|
||||||
|
installationId: r.installationId,
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<div class="container footer text-muted">
|
<div class="container footer text-muted">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col">© {{ year }}, Bitwarden Inc.</div>
|
<div class="col">© {{ year }} Bitwarden Inc.</div>
|
||||||
<div class="col text-center"></div>
|
<div class="col text-center"></div>
|
||||||
<div class="col text-right">
|
<div class="col text-right">
|
||||||
{{ "versionNumber" | i18n: version }}
|
{{ "versionNumber" | i18n: version }}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<router-outlet></router-outlet>
|
<router-outlet></router-outlet>
|
||||||
<div class="container my-5 text-muted text-center">
|
<div class="container my-5 text-muted text-center">
|
||||||
© {{ year }}, Bitwarden Inc. <br />
|
© {{ year }} Bitwarden Inc. <br />
|
||||||
{{ "versionNumber" | i18n: version }}
|
{{ "versionNumber" | i18n: version }}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -53,13 +53,7 @@ import localeZhTw from "@angular/common/locales/zh-Hant";
|
|||||||
import { NgModule } from "@angular/core";
|
import { NgModule } from "@angular/core";
|
||||||
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
|
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
|
||||||
import { RouterModule } from "@angular/router";
|
import { RouterModule } from "@angular/router";
|
||||||
import {
|
import { BadgeModule, ButtonModule, CalloutModule, MenuModule } from "@bitwarden/components";
|
||||||
BadgeModule,
|
|
||||||
ButtonModule,
|
|
||||||
CalloutModule,
|
|
||||||
FormFieldModule,
|
|
||||||
MenuModule,
|
|
||||||
} from "@bitwarden/components";
|
|
||||||
import { InfiniteScrollModule } from "ngx-infinite-scroll";
|
import { InfiniteScrollModule } from "ngx-infinite-scroll";
|
||||||
import { ToastrModule } from "ngx-toastr";
|
import { ToastrModule } from "ngx-toastr";
|
||||||
|
|
||||||
@@ -132,7 +126,6 @@ registerLocaleData(localeZhTw, "zh-TW");
|
|||||||
BadgeModule,
|
BadgeModule,
|
||||||
ButtonModule,
|
ButtonModule,
|
||||||
MenuModule,
|
MenuModule,
|
||||||
FormFieldModule,
|
|
||||||
],
|
],
|
||||||
exports: [
|
exports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
@@ -143,7 +136,6 @@ registerLocaleData(localeZhTw, "zh-TW");
|
|||||||
ReactiveFormsModule,
|
ReactiveFormsModule,
|
||||||
RouterModule,
|
RouterModule,
|
||||||
BadgeModule,
|
BadgeModule,
|
||||||
FormFieldModule,
|
|
||||||
ButtonModule,
|
ButtonModule,
|
||||||
CalloutModule,
|
CalloutModule,
|
||||||
ToastrModule,
|
ToastrModule,
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
></i>
|
></i>
|
||||||
</button>
|
</button>
|
||||||
<h3 class="filter-title">{{ collectionsGrouping.name | i18n }}</h3>
|
<h3 class="filter-title"> {{ collectionsGrouping.name | i18n }}</h3>
|
||||||
</div>
|
</div>
|
||||||
<ul id="collection-filters" *ngIf="!isCollapsed(collectionsGrouping)" class="filter-options">
|
<ul id="collection-filters" *ngIf="!isCollapsed(collectionsGrouping)" class="filter-options">
|
||||||
<ng-template #recursiveCollections let-collections>
|
<ng-template #recursiveCollections let-collections>
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
class="bwi bwi-collection bwi-fw"
|
class="bwi bwi-collection bwi-fw"
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
></i
|
></i
|
||||||
>{{ c.node.name }}
|
> {{ c.node.name }}
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
<ul
|
<ul
|
||||||
|
|||||||
@@ -16,9 +16,7 @@
|
|||||||
}"
|
}"
|
||||||
></i>
|
></i>
|
||||||
</button>
|
</button>
|
||||||
<h3 class="filter-title">
|
<h3 class="filter-title"> {{ "folders" | i18n }}</h3>
|
||||||
{{ "folders" | i18n }}
|
|
||||||
</h3>
|
|
||||||
<button
|
<button
|
||||||
class="text-muted ml-auto add-button"
|
class="text-muted ml-auto add-button"
|
||||||
(click)="addFolder()"
|
(click)="addFolder()"
|
||||||
@@ -56,7 +54,7 @@
|
|||||||
</button>
|
</button>
|
||||||
<button class="filter-button" (click)="applyFilter(f.node)">
|
<button class="filter-button" (click)="applyFilter(f.node)">
|
||||||
<i *ngIf="f.children.length === 0" class="bwi bwi-fw bwi-folder" aria-hidden="true"></i
|
<i *ngIf="f.children.length === 0" class="bwi bwi-fw bwi-folder" aria-hidden="true"></i
|
||||||
>{{ f.node.name }}
|
> {{ f.node.name }}
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
class="edit-button"
|
class="edit-button"
|
||||||
|
|||||||
@@ -15,9 +15,7 @@
|
|||||||
}"
|
}"
|
||||||
></i>
|
></i>
|
||||||
</button>
|
</button>
|
||||||
<h3>
|
<h3> {{ "types" | i18n }}</h3>
|
||||||
{{ "types" | i18n }}
|
|
||||||
</h3>
|
|
||||||
</div>
|
</div>
|
||||||
<ul id="type-filters" *ngIf="!isCollapsed" class="filter-options">
|
<ul id="type-filters" *ngIf="!isCollapsed" class="filter-options">
|
||||||
<li
|
<li
|
||||||
@@ -26,14 +24,14 @@
|
|||||||
>
|
>
|
||||||
<span class="filter-buttons">
|
<span class="filter-buttons">
|
||||||
<button class="filter-button" (click)="applyFilter(cipherTypeEnum.Login)">
|
<button class="filter-button" (click)="applyFilter(cipherTypeEnum.Login)">
|
||||||
<i class="bwi bwi-fw bwi-globe" aria-hidden="true"></i>{{ "typeLogin" | i18n }}
|
<i class="bwi bwi-fw bwi-globe" aria-hidden="true"></i> {{ "typeLogin" | i18n }}
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
<li class="filter-option" [ngClass]="{ active: activeFilter.cipherType === cipherTypeEnum.Card }">
|
<li class="filter-option" [ngClass]="{ active: activeFilter.cipherType === cipherTypeEnum.Card }">
|
||||||
<span class="filter-buttons">
|
<span class="filter-buttons">
|
||||||
<button class="filter-button" (click)="applyFilter(cipherTypeEnum.Card)">
|
<button class="filter-button" (click)="applyFilter(cipherTypeEnum.Card)">
|
||||||
<i class="bwi bwi-fw bwi-credit-card" aria-hidden="true"></i>{{ "typeCard" | i18n }}
|
<i class="bwi bwi-fw bwi-credit-card" aria-hidden="true"></i> {{ "typeCard" | i18n }}
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
@@ -43,7 +41,7 @@
|
|||||||
>
|
>
|
||||||
<span class="filter-buttons">
|
<span class="filter-buttons">
|
||||||
<button class="filter-button" (click)="applyFilter(cipherTypeEnum.Identity)">
|
<button class="filter-button" (click)="applyFilter(cipherTypeEnum.Identity)">
|
||||||
<i class="bwi bwi-fw bwi-id-card" aria-hidden="true"></i>{{ "typeIdentity" | i18n }}
|
<i class="bwi bwi-fw bwi-id-card" aria-hidden="true"></i> {{ "typeIdentity" | i18n }}
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
@@ -53,7 +51,9 @@
|
|||||||
>
|
>
|
||||||
<span class="filter-buttons">
|
<span class="filter-buttons">
|
||||||
<button class="filter-button" (click)="applyFilter(cipherTypeEnum.SecureNote)">
|
<button class="filter-button" (click)="applyFilter(cipherTypeEnum.SecureNote)">
|
||||||
<i class="bwi bwi-fw bwi-sticky-note" aria-hidden="true"></i>{{ "typeSecureNote" | i18n }}
|
<i class="bwi bwi-fw bwi-sticky-note" aria-hidden="true"></i> {{
|
||||||
|
"typeSecureNote" | i18n
|
||||||
|
}}
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -28,16 +28,6 @@ export class VaultFilterComponent extends BaseVaultFilterComponent {
|
|||||||
this.onSearchTextChanged.emit(this.searchText);
|
this.onSearchTextChanged.emit(this.searchText);
|
||||||
}
|
}
|
||||||
|
|
||||||
// This method exists because the vault component gets its data mixed up during the initial sync on first login. It looks for data before the sync is complete.
|
|
||||||
// It should be removed as soon as doing so makes sense.
|
|
||||||
async reloadOrganizations() {
|
|
||||||
this.organizations = await this.vaultFilterService.buildOrganizations();
|
|
||||||
this.activePersonalOwnershipPolicy =
|
|
||||||
await this.vaultFilterService.checkForPersonalOwnershipPolicy();
|
|
||||||
this.activeSingleOrganizationPolicy =
|
|
||||||
await this.vaultFilterService.checkForSingleOrganizationPolicy();
|
|
||||||
}
|
|
||||||
|
|
||||||
async initCollections() {
|
async initCollections() {
|
||||||
return await this.vaultFilterService.buildCollections(this.organization?.id);
|
return await this.vaultFilterService.buildCollections(this.organization?.id);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,50 +14,62 @@
|
|||||||
#form
|
#form
|
||||||
(ngSubmit)="submit()"
|
(ngSubmit)="submit()"
|
||||||
[appApiAction]="formPromise"
|
[appApiAction]="formPromise"
|
||||||
[formGroup]="formData"
|
ngNativeValidate
|
||||||
>
|
>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
<bit-form-field>
|
<div class="form-group">
|
||||||
<bit-label>{{ "organizationName" | i18n }}</bit-label>
|
<label for="name">{{ "organizationName" | i18n }}</label>
|
||||||
<input bitInput type="text" formControlName="name" />
|
<input
|
||||||
</bit-form-field>
|
id="name"
|
||||||
|
class="form-control"
|
||||||
<bit-form-field>
|
type="text"
|
||||||
<bit-label>{{ "billingEmail" | i18n }}</bit-label>
|
name="Name"
|
||||||
<input bitInput type="email" formControlName="billingEmail" />
|
[(ngModel)]="org.name"
|
||||||
</bit-form-field>
|
[disabled]="selfHosted"
|
||||||
|
/>
|
||||||
<bit-form-field>
|
</div>
|
||||||
<bit-label>{{ "businessName" | i18n }}</bit-label>
|
<div class="form-group">
|
||||||
<input bitInput type="text" formControlName="businessName" />
|
<label for="billingEmail">{{ "billingEmail" | i18n }}</label>
|
||||||
</bit-form-field>
|
<input
|
||||||
|
id="billingEmail"
|
||||||
<bit-form-field>
|
class="form-control"
|
||||||
<bit-label>{{ "identifier" | i18n }}</bit-label>
|
type="text"
|
||||||
<input bitInput type="text" formControlName="identifier" />
|
name="BillingEmail"
|
||||||
</bit-form-field>
|
[(ngModel)]="org.billingEmail"
|
||||||
|
[disabled]="selfHosted || !canManageBilling"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="businessName">{{ "businessName" | i18n }}</label>
|
||||||
|
<input
|
||||||
|
id="businessName"
|
||||||
|
class="form-control"
|
||||||
|
type="text"
|
||||||
|
name="BusinessName"
|
||||||
|
[(ngModel)]="org.businessName"
|
||||||
|
[disabled]="selfHosted || !canManageBilling"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="identifier">{{ "identifier" | i18n }}</label>
|
||||||
|
<input
|
||||||
|
id="identifier"
|
||||||
|
class="form-control"
|
||||||
|
type="text"
|
||||||
|
name="Identifier"
|
||||||
|
[(ngModel)]="org.identifier"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
<app-avatar
|
<app-avatar data="{{ org.name }}" dynamic="true" size="75" fontSize="35"></app-avatar>
|
||||||
[data]="formData.get('name').value"
|
|
||||||
dynamic="true"
|
|
||||||
size="75"
|
|
||||||
fontSize="35"
|
|
||||||
></app-avatar>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<button
|
<button type="submit" class="btn btn-primary btn-submit" [disabled]="form.loading">
|
||||||
type="submit"
|
|
||||||
bit-button
|
|
||||||
buttonType="primary"
|
|
||||||
class="btn-submit"
|
|
||||||
[disabled]="form.loading"
|
|
||||||
>
|
|
||||||
<i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i>
|
<i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i>
|
||||||
<span>{{ "save" | i18n }}</span>
|
<span>{{ "save" | i18n }}</span>
|
||||||
</button>
|
</button>
|
||||||
<bit-error-summary *ngIf="showErrorSummary" [formGroup]="formData"></bit-error-summary>
|
|
||||||
</form>
|
</form>
|
||||||
<ng-container *ngIf="canUseApi">
|
<ng-container *ngIf="canUseApi">
|
||||||
<div class="secondary-header border-0 mb-0">
|
<div class="secondary-header border-0 mb-0">
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
import { Component, ViewChild, ViewContainerRef } from "@angular/core";
|
import { Component, ViewChild, ViewContainerRef } from "@angular/core";
|
||||||
import { FormBuilder, Validators } from "@angular/forms";
|
|
||||||
import { ActivatedRoute, Router } from "@angular/router";
|
import { ActivatedRoute, Router } from "@angular/router";
|
||||||
|
|
||||||
import { ModalService } from "jslib-angular/services/modal.service";
|
import { ModalService } from "jslib-angular/services/modal.service";
|
||||||
@@ -42,19 +41,10 @@ export class AccountComponent {
|
|||||||
org: OrganizationResponse;
|
org: OrganizationResponse;
|
||||||
formPromise: Promise<any>;
|
formPromise: Promise<any>;
|
||||||
taxFormPromise: Promise<any>;
|
taxFormPromise: Promise<any>;
|
||||||
showErrorSummary = false;
|
|
||||||
|
|
||||||
private organizationId: string;
|
private organizationId: string;
|
||||||
|
|
||||||
formData = this.formBuilder.group({
|
|
||||||
name: ["", [Validators.required]],
|
|
||||||
billingEmail: ["", [Validators.required, Validators.email]],
|
|
||||||
businessName: [],
|
|
||||||
identifier: [],
|
|
||||||
});
|
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private formBuilder: FormBuilder,
|
|
||||||
private modalService: ModalService,
|
private modalService: ModalService,
|
||||||
private apiService: ApiService,
|
private apiService: ApiService,
|
||||||
private i18nService: I18nService,
|
private i18nService: I18nService,
|
||||||
@@ -70,12 +60,6 @@ export class AccountComponent {
|
|||||||
async ngOnInit() {
|
async ngOnInit() {
|
||||||
this.selfHosted = this.platformUtilsService.isSelfHost();
|
this.selfHosted = this.platformUtilsService.isSelfHost();
|
||||||
|
|
||||||
if (this.selfHosted) {
|
|
||||||
this.formData.disable();
|
|
||||||
} else {
|
|
||||||
this.formData.enable();
|
|
||||||
}
|
|
||||||
|
|
||||||
this.route.parent.parent.params.subscribe(async (params) => {
|
this.route.parent.parent.params.subscribe(async (params) => {
|
||||||
this.organizationId = params.organizationId;
|
this.organizationId = params.organizationId;
|
||||||
this.canManageBilling = (
|
this.canManageBilling = (
|
||||||
@@ -84,13 +68,6 @@ export class AccountComponent {
|
|||||||
try {
|
try {
|
||||||
this.org = await this.apiService.getOrganization(this.organizationId);
|
this.org = await this.apiService.getOrganization(this.organizationId);
|
||||||
this.canUseApi = this.org.useApi;
|
this.canUseApi = this.org.useApi;
|
||||||
|
|
||||||
this.formData.setValue({
|
|
||||||
name: this.org.name,
|
|
||||||
billingEmail: this.org.billingEmail,
|
|
||||||
businessName: this.org.businessName,
|
|
||||||
identifier: this.org.identifier,
|
|
||||||
});
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.logService.error(e);
|
this.logService.error(e);
|
||||||
}
|
}
|
||||||
@@ -99,19 +76,12 @@ export class AccountComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async submit() {
|
async submit() {
|
||||||
this.formData.markAllAsTouched();
|
|
||||||
this.showErrorSummary = true;
|
|
||||||
|
|
||||||
if (!this.formData.valid) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const request = new OrganizationUpdateRequest();
|
const request = new OrganizationUpdateRequest();
|
||||||
request.name = this.formData.get("name").value;
|
request.name = this.org.name;
|
||||||
request.businessName = this.formData.get("businessName").value;
|
request.businessName = this.org.businessName;
|
||||||
request.billingEmail = this.formData.get("billingEmail").value;
|
request.billingEmail = this.org.billingEmail;
|
||||||
request.identifier = this.formData.get("identifier").value;
|
request.identifier = this.org.identifier;
|
||||||
|
|
||||||
// Backfill pub/priv key if necessary
|
// Backfill pub/priv key if necessary
|
||||||
if (!this.org.hasPublicAndPrivateKeys) {
|
if (!this.org.hasPublicAndPrivateKeys) {
|
||||||
|
|||||||
@@ -307,6 +307,9 @@ export class EventService {
|
|||||||
case EventType.Organization_DisabledKeyConnector:
|
case EventType.Organization_DisabledKeyConnector:
|
||||||
msg = humanReadableMsg = this.i18nService.t("disabledKeyConnector");
|
msg = humanReadableMsg = this.i18nService.t("disabledKeyConnector");
|
||||||
break;
|
break;
|
||||||
|
case EventType.Organization_SponsorshipsSynced:
|
||||||
|
msg = humanReadableMsg = this.i18nService.t("sponsorshipsSynced");
|
||||||
|
break;
|
||||||
// Policies
|
// Policies
|
||||||
case EventType.Policy_Updated: {
|
case EventType.Policy_Updated: {
|
||||||
msg = this.i18nService.t("modifiedPolicyId", this.formatPolicyId(ev));
|
msg = this.i18nService.t("modifiedPolicyId", this.formatPolicyId(ev));
|
||||||
|
|||||||
@@ -5041,6 +5041,9 @@
|
|||||||
"message": "Last Sync",
|
"message": "Last Sync",
|
||||||
"Description": "Used as a prefix to indicate the last time a sync occured. Example \"Last sync 1968-11-16 00:00:00\""
|
"Description": "Used as a prefix to indicate the last time a sync occured. Example \"Last sync 1968-11-16 00:00:00\""
|
||||||
},
|
},
|
||||||
|
"sponsorshipsSynced": {
|
||||||
|
"message": "Self-hosted sponsorships synced."
|
||||||
|
},
|
||||||
"billingManagedByProvider": {
|
"billingManagedByProvider": {
|
||||||
"message": "Managed by $PROVIDER$",
|
"message": "Managed by $PROVIDER$",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
@@ -5066,20 +5069,5 @@
|
|||||||
},
|
},
|
||||||
"apiAccessToken": {
|
"apiAccessToken": {
|
||||||
"message": "API Access Token"
|
"message": "API Access Token"
|
||||||
},
|
|
||||||
"inputRequired": {
|
|
||||||
"message": "Input is required."
|
|
||||||
},
|
|
||||||
"inputEmail": {
|
|
||||||
"message": "Input is not an email-address."
|
|
||||||
},
|
|
||||||
"fieldsNeedAttention": {
|
|
||||||
"message": "$COUNT$ field(s) above need your attention.",
|
|
||||||
"placeholders": {
|
|
||||||
"count": {
|
|
||||||
"content": "$1",
|
|
||||||
"example": "4"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user