auth_controller.ts 486 Bytes
import {Credentials} from "./../../models/interfaces";
import {AuthService} from "./auth_service";

export class AuthController {

    static $inject = ["noosfero", "$log", "$stateParams", "AuthService"];

    constructor(
        private noosfero: any,
        private $log: ng.ILogService,
        private $stateParams: any,
        private AuthService: AuthService
    ) {

    }

    credentials: Credentials;

    login() {
        this.AuthService.login(this.credentials);
    }
}