Wire up signup via Github

This commit is contained in:
2019-07-26 03:38:18 +02:00
parent c2273d1778
commit 413bcddb1e
9 changed files with 99 additions and 36 deletions
+14
View File
@@ -0,0 +1,14 @@
import Controller from '@ember/controller';
import config from 'kredits-web/config/environment';
export default Controller.extend({
actions: {
connectGithub () {
window.location = config.githubConnectUrl;
}
}
});