mirror of
https://github.com/harness/drone.git
synced 2025-05-07 06:30:35 +08:00
7 lines
188 B
JavaScript
7 lines
188 B
JavaScript
'use strict';
|
|
|
|
angular.module('app').controller("LogoutController", function() {
|
|
console.log("logging out")
|
|
localStorage.removeItem("access_token");
|
|
window.location.href = "/login";
|
|
}); |