scopes and other files
This commit is contained in:
@@ -21,7 +21,11 @@ class EsiScopeController extends Controller
|
||||
}
|
||||
|
||||
public function displayScopes() {
|
||||
return view('scopes.select');
|
||||
//Get the ESI Scopes for the user
|
||||
$scopes = DB::table('EsiScopes')->where('character_id', Auth::user()->character_id)->get();
|
||||
//We want to send the scopes to the page as pre-checked.
|
||||
dd($scopes);
|
||||
return view('scopes.select')->with('scopes', $scopes);
|
||||
}
|
||||
|
||||
public function redirectToProvider(Request $request) {
|
||||
|
||||
Reference in New Issue
Block a user