From bf3393e9a9cff221af0d1759d7de3d375d54c753 Mon Sep 17 00:00:00 2001 From: starnakin Date: Wed, 29 Nov 2023 20:56:32 +0100 Subject: [PATCH] rename view --- ...bstractAuthentificateView.js => AbstractAuthentifiedView.js} | 0 ...stractUnAuthentificateView.js => AbstractNonAuthentified.js} | 0 frontend/static/js/views/HomeView.js | 2 +- frontend/static/js/views/accounts/LoginView.js | 2 +- frontend/static/js/views/accounts/LogoutView.js | 2 +- frontend/static/js/views/accounts/RegisterView.js | 2 +- 6 files changed, 4 insertions(+), 4 deletions(-) rename frontend/static/js/views/{AbstractAuthentificateView.js => AbstractAuthentifiedView.js} (100%) rename frontend/static/js/views/{AbstractUnAuthentificateView.js => AbstractNonAuthentified.js} (100%) diff --git a/frontend/static/js/views/AbstractAuthentificateView.js b/frontend/static/js/views/AbstractAuthentifiedView.js similarity index 100% rename from frontend/static/js/views/AbstractAuthentificateView.js rename to frontend/static/js/views/AbstractAuthentifiedView.js diff --git a/frontend/static/js/views/AbstractUnAuthentificateView.js b/frontend/static/js/views/AbstractNonAuthentified.js similarity index 100% rename from frontend/static/js/views/AbstractUnAuthentificateView.js rename to frontend/static/js/views/AbstractNonAuthentified.js diff --git a/frontend/static/js/views/HomeView.js b/frontend/static/js/views/HomeView.js index e18f727..4d44ecb 100644 --- a/frontend/static/js/views/HomeView.js +++ b/frontend/static/js/views/HomeView.js @@ -1,4 +1,4 @@ -import AbstractAuthentificateView from "./AbstractAuthentificateView.js"; +import AbstractAuthentificateView from "./AbstractAuthentifiedView.js"; export default class extends AbstractAuthentificateView { constructor(params) { diff --git a/frontend/static/js/views/accounts/LoginView.js b/frontend/static/js/views/accounts/LoginView.js index 92835e1..1cf922a 100644 --- a/frontend/static/js/views/accounts/LoginView.js +++ b/frontend/static/js/views/accounts/LoginView.js @@ -1,5 +1,5 @@ import { client, navigateTo } from "../../index.js"; -import AbstractUnAuthentificateView from "../AbstractUnAuthentificateView.js"; +import AbstractUnAuthentificateView from "../AbstractNonAuthentified.js"; async function login() { diff --git a/frontend/static/js/views/accounts/LogoutView.js b/frontend/static/js/views/accounts/LogoutView.js index 82e4f8e..6903be5 100644 --- a/frontend/static/js/views/accounts/LogoutView.js +++ b/frontend/static/js/views/accounts/LogoutView.js @@ -1,5 +1,5 @@ import { client, navigateTo } from "../../index.js"; -import AbstractAuthentificateView from "../AbstractAuthentificateView.js"; +import AbstractAuthentificateView from "../AbstractAuthentifiedView.js"; export default class extends AbstractAuthentificateView { diff --git a/frontend/static/js/views/accounts/RegisterView.js b/frontend/static/js/views/accounts/RegisterView.js index c6d784f..36575e6 100644 --- a/frontend/static/js/views/accounts/RegisterView.js +++ b/frontend/static/js/views/accounts/RegisterView.js @@ -1,5 +1,5 @@ import { client, navigateTo } from "../../index.js"; -import AbstractUnAuthentificateView from "../AbstractUnAuthentificateView.js"; +import AbstractUnAuthentificateView from "../AbstractNonAuthentified.js"; async function register() {