Skip to content

Commit e911976

Browse files
committed
fmt
1 parent a04bc56 commit e911976

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

service/policy/actions/actions.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,11 @@ func (a *ActionService) CreateAction(ctx context.Context, req *connect.Request[a
116116
if err != nil {
117117
return err
118118
}
119-
119+
120120
auditParams.ObjectID = action.GetId()
121121
auditParams.Original = action
122122
a.logger.Audit.PolicyCRUDSuccess(ctx, auditParams)
123-
123+
124124
rsp.Action = action
125125
return nil
126126
})
@@ -151,16 +151,16 @@ func (a *ActionService) UpdateAction(ctx context.Context, req *connect.Request[a
151151
if err != nil {
152152
return err
153153
}
154-
154+
155155
updated, err := txClient.UpdateAction(ctx, req.Msg)
156156
if err != nil {
157157
return err
158158
}
159-
159+
160160
auditParams.Original = original
161161
auditParams.Updated = updated
162162
a.logger.Audit.PolicyCRUDSuccess(ctx, auditParams)
163-
163+
164164
rsp.Action = updated
165165
return nil
166166
})

0 commit comments

Comments
 (0)