
GET api/v1/groups params: filter ** code ( available operators : [==, =@] ** title ( available operators : [==, =@] order ** id ** code ** title Change-Id: I4e45febb1aa85bb61bd8b4a391e45fb217e2bb95
102 lines
2.3 KiB
PHP
102 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2015 OpenStack Foundation
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
**/
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use App\Models\ResourceServer\Api;
|
|
use LaravelDoctrine\ORM\Facades\EntityManager;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
/**
|
|
* Class ApisTableSeeder
|
|
*/
|
|
final class ApiSeeder extends Seeder
|
|
{
|
|
|
|
public function run()
|
|
{
|
|
|
|
DB::table('endpoint_api_scopes')->delete();
|
|
DB::table('api_scopes')->delete();
|
|
DB::table('api_endpoints')->delete();
|
|
DB::table('apis')->delete();
|
|
|
|
// summit
|
|
|
|
$api = new Api();
|
|
$api->setName('summits');
|
|
$api->setActive(true);
|
|
$api->setDescription('Summit API');
|
|
|
|
EntityManager::persist($api);
|
|
|
|
EntityManager::flush();
|
|
|
|
// members
|
|
|
|
$api = new Api();
|
|
$api->setName('members');
|
|
$api->setActive(true);
|
|
$api->setDescription('Members API');
|
|
|
|
EntityManager::persist($api);
|
|
|
|
EntityManager::flush();
|
|
|
|
//tags
|
|
|
|
$api = new Api();
|
|
$api->setName('tags');
|
|
$api->setActive(true);
|
|
$api->setDescription('tags API');
|
|
|
|
EntityManager::persist($api);
|
|
|
|
EntityManager::flush();
|
|
|
|
//companies
|
|
|
|
$api = new Api();
|
|
$api->setName('companies');
|
|
$api->setActive(true);
|
|
$api->setDescription('companies API');
|
|
|
|
EntityManager::persist($api);
|
|
|
|
EntityManager::flush();
|
|
|
|
//groups
|
|
|
|
$api = new Api();
|
|
$api->setName('groups');
|
|
$api->setActive(true);
|
|
$api->setDescription('groups API');
|
|
|
|
EntityManager::persist($api);
|
|
|
|
EntityManager::flush();
|
|
|
|
|
|
// teams
|
|
|
|
$api = new Api();
|
|
$api->setName('teams');
|
|
$api->setActive(true);
|
|
$api->setDescription('Teams API');
|
|
|
|
EntityManager::persist($api);
|
|
|
|
EntityManager::flush();
|
|
|
|
}
|
|
} |