mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 12:21:03 +00:00
7 lines
No EOL
188 B
JavaScript
7 lines
No EOL
188 B
JavaScript
'use strict';
|
|
|
|
angular.module('app').controller("LogoutController", function() {
|
|
console.log("logging out")
|
|
localStorage.removeItem("access_token");
|
|
window.location.href = "/login";
|
|
}); |