Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Show local seed page upon successful authentication
Rūdolfs Ošiņš committed 3 years ago
commit feed4d44616d2d6d997fb657603484992b429e77
parent c1d0fbc1d75d1be9ef1619cca9778eb7cdec47fe
1 file changed +2 -2
modified src/views/session/Index.svelte
@@ -18,6 +18,7 @@

    if (status === "success") {
      modal.show({ component: AuthenticatedModal, props: {} });
+
      router.push({ resource: "seeds", params: { host: "radicle.local" } });
    } else {
      modal.show({
        component: AuthenticationErrorModal,
@@ -29,9 +30,8 @@
          ],
        },
      });
+
      router.push({ resource: "home" });
    }
-

-
    router.push({ resource: "home" });
  });
</script>