Files
kredits-web/app/controllers/signup/index.js
T
2023-08-14 17:50:10 +02:00

13 lines
282 B
JavaScript

import Controller from '@ember/controller';
import { action } from '@ember/object';
import config from 'kredits-web/config/environment';
export default class IndexController extends Controller {
@action
connectGithub () {
window.location = config.githubConnectUrl;
}
}