jheitz200 commented on a change in pull request #4006: implement 
deliveryservice_server_capabilities api endpoint
URL: https://github.com/apache/trafficcontrol/pull/4006#discussion_r337225500
 
 

 ##########
 File path: traffic_ops/app/db/seeds.sql
 ##########
 @@ -541,6 +541,10 @@ insert into api_capability (http_method, route, 
capability) values ('GET', 'deli
 insert into api_capability (http_method, route, capability) values ('POST', 
'deliveryserviceserver', 'delivery-service-servers-write') ON CONFLICT 
(http_method, route, capability) DO NOTHING;
 insert into api_capability (http_method, route, capability) values ('POST', 
'deliveryservices/*/servers', 'delivery-service-servers-write') ON CONFLICT 
(http_method, route, capability) DO NOTHING;
 insert into api_capability (http_method, route, capability) values ('DELETE', 
'deliveryservice_server/*/*', 'delivery-service-servers-write') ON CONFLICT 
(http_method, route, capability) DO NOTHING;
+-- delivery service server capabilities
+insert into api_capability (http_method, route, capability) values ('GET', 
'deliveryservice_server_capabilities', 'delivery-services-read') ON CONFLICT 
(http_method, route, capability) DO NOTHING;
+insert into api_capability (http_method, route, capability) values ('POST', 
'deliveryservice_server_capabilities', 'delivery-services-write') ON CONFLICT 
(http_method, route, capability) DO NOTHING;
+insert into api_capability (http_method, route, capability) values ('DELETE', 
'deliveryservice_server_capabilities', 
'delivery-service-server-capabilities-write') ON CONFLICT (http_method, route, 
capability) DO NOTHING;
 
 Review comment:
   Thanks for pointing this out, I didnt understand these roles and forgot to 
change that one

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to