You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
678 B
21 lines
678 B
<?php
|
|
|
|
use App\Domains\Channel\Enums\Api\ApiType;
|
|
use App\Domains\Channel\Enums\Client\AuthType;
|
|
|
|
return [
|
|
'api_type' => [
|
|
ApiType::FACULTY->value => 'Faculty',
|
|
ApiType::STUDY_PROGRAM->value => 'Study Program',
|
|
ApiType::TERM->value => 'Term',
|
|
ApiType::ADMISSION_TRACK->value => 'Admission Track',
|
|
ApiType::ADMISSION_SCHEDULE->value => 'Admission Schedule',
|
|
ApiType::ACADEMIC_PROGRAM->value => 'Academic Program',
|
|
ApiType::FEE_TYPE->value => 'Fee Type',
|
|
],
|
|
'auth_type' => [
|
|
AuthType::NONE->value => 'None',
|
|
AuthType::BASIC->value => 'Basic',
|
|
AuthType::TOKEN->value => 'Token',
|
|
],
|
|
];
|
|
|