We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
To integrate Admin Integrations the following should be done:
AdminIntegration
belongs_to
Account
has_many
Create endpoints for both implementation and test:
get_admin_integrations
GET /admin-integrations/
get_admin_integration
GET /admin-integrations/:id
create_admin_integration_unik
POST /admin-integrations/unik
update_admin_integration_unik
PATCH /admin-integrations/unik/:id
delete_admin_integration
DELETE /admin-integrations/:id
Legolas paths are: /admin-integrations and /admin-integrations/unik The type is admin-integrations
/admin-integrations
/admin-integrations/unik
admin-integrations
The text was updated successfully, but these errors were encountered:
Done. Testing during the work on integration in Arwen.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
To integrate Admin Integrations the following should be done:
AdminIntegration
model should be created with abelongs_to
relation toAccount
.Account
.Account
should have ahas_many
relation to `AdminIntegration'Create endpoints for both implementation and test:
get_admin_integrations
--->GET /admin-integrations/
get_admin_integration
--->GET /admin-integrations/:id
create_admin_integration_unik
--->POST /admin-integrations/unik
update_admin_integration_unik
--->PATCH /admin-integrations/unik/:id
delete_admin_integration
--->DELETE /admin-integrations/:id
Legolas paths are:
/admin-integrations
and/admin-integrations/unik
The type is
admin-integrations
The text was updated successfully, but these errors were encountered: