aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/app.js
blob: cf2cb369d32fab538c4847b09e592ee104efbe3b (plain)
1
2
3
4
5
6
7
8
9
10
// JS Goes here - ES6 supported
if (window.netlifyIdentity) {
  window.netlifyIdentity.on("init", user => {
    if (!user) {
      window.netlifyIdentity.on("login", () => {
        document.location.href = "/admin/";
      });
    }
  });
}