
In order to migrate IDP from LV 4.x to latest LV version, following task were performed: * Updated namespace to be complain with PSR-4 * General Refactoring: moved all DB access code from services to repositories. * Migration to LV 5.X: these migration guides were applied - https://laravel.com/docs/5.3/upgrade#upgrade-5.0 - https://laravel.com/docs/5.3/upgrade#upgrade-5.1.0 - https://laravel.com/docs/5.3/upgrade#upgrade-5.2.0 * Improved caching: added repositories decorators in order to add REDIS cache to queries, entities Change-Id: I8edf9f5fce6585129701c88bb88332f242307534
12 lines
529 B
PHP
12 lines
529 B
PHP
<?php
|
|
return array(
|
|
'edit_api_title' => "Edit Resource Server API - Id :id",
|
|
'edit_api_go_back' => 'Go Back',
|
|
'edit_api_form_name' => 'Name',
|
|
'edit_api_form_description' => 'Description',
|
|
'edit_api_form_save' => 'Save',
|
|
'edit_endpoint_title' => "Edit API Endpoint - Id :id",
|
|
'edit_endpoint_scope_info_title' => "You set here all needed scopes to access to this endpoint",
|
|
'edit_endpoint_scope_title' => "Required Scopes",
|
|
'global_successfully_save_entity' => ":entity successfully saved!.",
|
|
); |