|
|
- <?php
-
- /*
- |--------------------------------------------------------------------------
- | Web Routes
- |--------------------------------------------------------------------------
- |
- | Here is where you can register web routes for your application. These
- | routes are loaded by the RouteServiceProvider within a group which
- | contains the "web" middleware group. Now create something great!
- |
- */
-
- Route::get('/', function () {
- return view('welcome');
- });
-
- Auth::routes();
-
- Route::get('/dashboard', 'DashboardController@index')->name('dashboard');
- Route::get('/dashboard/queue', 'DashboardController@queue')->name('queue');
- Route::get('/dashboard/ping', 'DashboardController@ping');
- Route::get('/dashboard/dropdowns', 'DashboardController@load_dropdowns');
- Route::post('/dashboard/claim-tweet', 'DashboardController@claim_tweet');
- Route::post('/dashboard/reject-tweet', 'DashboardController@reject_tweet');
- Route::post('/dashboard/score-tweet', 'DashboardController@score_tweet');
-
- Route::get('/teams', 'TeamController@index')->name('teams');
- Route::post('/teams/new', 'TeamController@create_team');
- Route::post('/teams/add-player', 'TeamController@add_player');
-
- Route::get('/scoreboard', 'ScoreboardController@index')->name('scoreboard');
-
- Route::post('/twitter/stream', 'TwitterController@input');
|