mirror of
https://github.com/TeamPiped/Piped.git
synced 2025-10-13 19:08:22 +00:00
Login and subscriptions. (#256)
* WIP login and subscriptions. * Add a working feed and unsubscribe button. * Allow importing subscriptions from Google Takeout, NewPipe and Invidious.
This commit is contained in:
@@ -29,6 +29,26 @@ const routes = [
|
||||
path: "/:path(channel|user|c)/:channelId/:videos?",
|
||||
component: () => import("../components/Channel.vue"),
|
||||
},
|
||||
{
|
||||
path: "/login",
|
||||
name: "Login",
|
||||
component: () => import("../components/LoginPage.vue"),
|
||||
},
|
||||
{
|
||||
path: "/register",
|
||||
name: "Register",
|
||||
component: () => import("../components/RegisterPage.vue"),
|
||||
},
|
||||
{
|
||||
path: "/feed",
|
||||
name: "Feed",
|
||||
component: () => import("../components/FeedPage.vue"),
|
||||
},
|
||||
{
|
||||
path: "/import",
|
||||
name: "Import",
|
||||
component: () => import("../components/ImportPage.vue"),
|
||||
},
|
||||
];
|
||||
|
||||
const router = createRouter({
|
||||
|
Reference in New Issue
Block a user