Method
Delete
(ctx context.Context, username, secretID string, opts metav1.DeleteOptions)
Source from the content-addressed store, hash-verified
| 53 | } |
| 54 | |
| 55 | func (s *secretService) Delete(ctx context.Context, username, secretID string, opts metav1.DeleteOptions) error { |
| 56 | if err := s.store.Secrets().Delete(ctx, username, secretID, opts); err != nil { |
| 57 | return err |
| 58 | } |
| 59 | |
| 60 | return nil |
| 61 | } |
| 62 | |
| 63 | func (s *secretService) DeleteCollection( |
| 64 | ctx context.Context, |
Callers
nothing calls this directly
Tested by
no test coverage detected