auth method

void auth()

Changes router location to the Routes.auth page.

Invokes WebUtils.closeWindow, if called from a WebUtils.isPopup.

Implementation

void auth() {
  if (WebUtils.isPopup) {
    WebUtils.closeWindow();
  } else {
    go(Routes.auth);
  }
}