authserver/testCAS/app/Http/routes.php
author durandn
Fri, 02 Oct 2015 10:24:23 +0200
changeset 170 75e3a41722ad
parent 8 5a0cbbe0922a
permissions -rw-r--r--
implement mdplayer changes from oaubert pull request + added a script to build mdplayer from mdplayer local repo

<?php

/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the controller to call when that URI is requested.
|
*/

Route::get('/', 'WelcomeController@index');
Route::get('pgtcallback', ['as' => 'casstorepgt', 'uses' => 'WelcomeController@storePGT']);
Route::get('home', ['as' => 'index', 'uses' => 'HomeController@index']);
Route::get('logout', ['as' => 'casLogout', 'uses' => 'HomeController@logout']);