This is an automated email from the ASF dual-hosted git repository.
zehnder pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git
The following commit(s) were added to refs/heads/dev by this push:
new f8e4c608ec fix(#3410): Remove unused class auth.model.ts (#3411)
f8e4c608ec is described below
commit f8e4c608ec2fa80463e40ffff4c7ff5b340d083b
Author: Philipp Zehnder <[email protected]>
AuthorDate: Mon Jan 13 08:50:51 2025 +0100
fix(#3410): Remove unused class auth.model.ts (#3411)
---
ui/src/app/_models/auth.model.ts | 25 -------------------------
1 file changed, 25 deletions(-)
diff --git a/ui/src/app/_models/auth.model.ts b/ui/src/app/_models/auth.model.ts
deleted file mode 100644
index 145c3c1026..0000000000
--- a/ui/src/app/_models/auth.model.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-import { UserRole } from '../_enums/user-role.enum';
-
-export interface RoleDescription {
- role: UserRole;
- roleTitle: string;
- roleDescription: string;
-}