function OneHeaderController(markup, redirect) {
  this.isCreator = isCreator;
  this.headerIndex = headerIndex;
  this.markup = markup;
  this.loggedInUser = loggedInUser;
  this.redirect = redirect;
}
OneHeaderController.$inject = ["MarkupUtils", "redirect"];

OneHeaderController.prototype.logout = function() {
  var self = this;
  this.redirect("logout.php");
};


