mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 06:43:35 +00:00
[SM-452] Remove imports view from secrets manager models (#4511)
This commit is contained in:
@@ -1,6 +1,4 @@
|
|||||||
import { View } from "@bitwarden/common/models/view/view";
|
export class ProjectListView {
|
||||||
|
|
||||||
export class ProjectListView implements View {
|
|
||||||
id: string;
|
id: string;
|
||||||
organizationId: string;
|
organizationId: string;
|
||||||
name: string;
|
name: string;
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
import { View } from "@bitwarden/common/models/view/view";
|
export class ProjectView {
|
||||||
|
|
||||||
export class ProjectView implements View {
|
|
||||||
id: string;
|
id: string;
|
||||||
organizationId: string;
|
organizationId: string;
|
||||||
name: string;
|
name: string;
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
import { View } from "@bitwarden/common/models/view/view";
|
|
||||||
|
|
||||||
import { SecretProjectView } from "./secret-project.view";
|
import { SecretProjectView } from "./secret-project.view";
|
||||||
|
|
||||||
export class SecretListView implements View {
|
export class SecretListView {
|
||||||
id: string;
|
id: string;
|
||||||
organizationId: string;
|
organizationId: string;
|
||||||
name: string;
|
name: string;
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
import { View } from "@bitwarden/common/models/view/view";
|
export class SecretProjectView {
|
||||||
|
|
||||||
export class SecretProjectView implements View {
|
|
||||||
id: string;
|
id: string;
|
||||||
name: string;
|
name: string;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
import { View } from "@bitwarden/common/models/view/view";
|
|
||||||
|
|
||||||
import { SecretProjectView } from "./secret-project.view";
|
import { SecretProjectView } from "./secret-project.view";
|
||||||
|
|
||||||
export class SecretView implements View {
|
export class SecretView {
|
||||||
id: string;
|
id: string;
|
||||||
organizationId: string;
|
organizationId: string;
|
||||||
name: string;
|
name: string;
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
import { View } from "@bitwarden/common/models/view/view";
|
export class ServiceAccountView {
|
||||||
|
|
||||||
export class ServiceAccountView implements View {
|
|
||||||
id: string;
|
id: string;
|
||||||
organizationId: string;
|
organizationId: string;
|
||||||
name: string;
|
name: string;
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
import { View } from "@bitwarden/common/models/view/view";
|
export class AccessTokenView {
|
||||||
|
|
||||||
export class AccessTokenView implements View {
|
|
||||||
id: string;
|
id: string;
|
||||||
name: string;
|
name: string;
|
||||||
scopes: string[];
|
scopes: string[];
|
||||||
|
|||||||
Reference in New Issue
Block a user