-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ActiveResource #14
Comments
da un ejemplo de como se comportaría este active resource. |
Puede ser de tipo $childResources = [ |
¿Cómo se diferenciaría entre coleciones y singleton? Ejemplo: |
que tal algo como esto? $childResources = [ |
ok suena razonable. por último ¿cómo se manejaría el slug? ya no sería un behavior en el modelo ya que ahora cambiaría el orden de revisión. ¿que podría ser? ¿cómo se hace lo de slug links de cada modelo? |
Pues esa parte podria ser solventada a mano, podriamos declarar el sluglink
a mano, o modificar el slug padre
El 27/06/2017 1:30 p.m., "Angel Guevara" <[email protected]>
escribió:
ok suena razonable. por último ¿cómo se manejaría el slug? ya no sería un
behavior en el modelo ya que ahora cambiaría el orden de revisión. ¿que
podría ser? ¿cómo se hace lo de slug links de cada modelo?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#14 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AGu-Fau3rnQ8t0FgfXmdEmqdwaa-R9ajks5sIUoygaJpZM4OC8_0>
.
|
#13 ya fue resuelto ¿cómo afecta este issue? |
Con el uso de modulos y filtros de accion se puede crear una nueva clase digamos /**
* Handles route /shop
*/
class ShopModuleResource extends \tecnocen\roa\modules\ActiveModuleResource
{
public $resourceController = [
'modelClass' => Shop::class,
'searchClass' => ShopSearch::class,
];
public $modules => [
'department' => DepartmentModuleResource::class, // route /shop/<shop_id>/department
'employee' => EmployeeModuleResource::class, // route /shop/<shop_id>/employee
];
} |
@Faryshta, plz make a real example here, something like /shop/<shop_id>/department or /shop/<shop_id>/employee https://github.com/tecnocen-com/yii2-roa/blob/master/tests/_app/api/modules/Version.php |
Making a demo would take me the same as making the entire thing by definition. above I wrote how it could be used. |
Propongo el uso de un Active Resource de modo que en el archivo version se declaren todos los 'Resources' Padres, y en cada uno de los padres se declaren los recursos anidados.
The text was updated successfully, but these errors were encountered: