This is an automated email from the ASF dual-hosted git repository.

ocket8888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


The following commit(s) were added to refs/heads/master by this push:
     new 767821339f Add ACME permissions to Operations Role (#7370)
767821339f is described below

commit 767821339fbce3b298b2f61bf82ef452d6d1dd54
Author: Eric Holguin <[email protected]>
AuthorDate: Thu Mar 2 19:14:37 2023 -0700

    Add ACME permissions to Operations Role (#7370)
    
    * Added ACME permissions to operations role
    
    * fix fomatting and log changes
    
    * user correct pr number
---
 CHANGELOG.md                 | 1 +
 traffic_ops/app/db/seeds.sql | 4 ++++
 2 files changed, 5 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index f879eb165d..503305553c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -30,6 +30,7 @@ The format is based on [Keep a 
Changelog](http://keepachangelog.com/en/1.0.0/).
 - [#7296](https://github.com/apache/trafficcontrol/pull/7296) *Traffic Portal* 
New configuration option in `traffic_portal_properties.json` at 
`deliveryServices.exposeInactive` controls exposing APIv5 DS Active State 
options in the TP UI.
 - [#7332](https://github.com/apache/trafficcontrol/pull/7332) *Traffic Ops* 
Creates new role needed for TR to watch TO resources.
 - [#7322](https://github.com/apache/trafficcontrol/issues/7322) *t3c Adds 
support for anycast on http routed edges.
+- [#7367](https://github.com/apache/trafficcontrol/pull/7367) *Traffic Ops* 
Adds ACME:CREATE, ACME:DELETE, ACME:DELETE, and ACME:READ permissions to 
operations role.
 
 ### Changed
 - [#7369](https://github.com/apache/trafficcontrol/pull/7369) *Traffic Portal* 
Adds better labels to routing methods widget on the TP dashboard.
diff --git a/traffic_ops/app/db/seeds.sql b/traffic_ops/app/db/seeds.sql
index 3ebafb0378..cd7b516556 100644
--- a/traffic_ops/app/db/seeds.sql
+++ b/traffic_ops/app/db/seeds.sql
@@ -183,6 +183,10 @@ INSERT INTO public.role_capability
 SELECT id, perm
 FROM public.role
 CROSS JOIN ( VALUES
+        ('ACME:CREATE'),
+        ('ACME:DELETE'),
+        ('ACME:READ'),
+        ('ACME:UPDATE'),
        ('ASN:CREATE'),
        ('ASN:DELETE'),
        ('ASN:UPDATE'),

Reply via email to