|
|
|
@ -116,12 +116,11 @@ func (Action) CreateOrUpdateSecret(ctx *context.APIContext) { |
|
|
|
// "404":
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
|
|
|
|
|
|
|
owner := ctx.Repo.Owner |
|
|
|
|
|
|
|
repo := ctx.Repo.Repository |
|
|
|
repo := ctx.Repo.Repository |
|
|
|
|
|
|
|
|
|
|
|
opt := web.GetForm(ctx).(*api.CreateOrUpdateSecretOption) |
|
|
|
opt := web.GetForm(ctx).(*api.CreateOrUpdateSecretOption) |
|
|
|
|
|
|
|
|
|
|
|
_, created, err := secret_service.CreateOrUpdateSecret(ctx, owner.ID, repo.ID, ctx.Params("secretname"), opt.Data) |
|
|
|
_, created, err := secret_service.CreateOrUpdateSecret(ctx, 0, repo.ID, ctx.Params("secretname"), opt.Data) |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
if errors.Is(err, util.ErrInvalidArgument) { |
|
|
|
if errors.Is(err, util.ErrInvalidArgument) { |
|
|
|
ctx.Error(http.StatusBadRequest, "CreateOrUpdateSecret", err) |
|
|
|
ctx.Error(http.StatusBadRequest, "CreateOrUpdateSecret", err) |
|
|
|
@ -173,10 +172,9 @@ func (Action) DeleteSecret(ctx *context.APIContext) { |
|
|
|
// "404":
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
|
|
|
|
|
|
|
owner := ctx.Repo.Owner |
|
|
|
|
|
|
|
repo := ctx.Repo.Repository |
|
|
|
repo := ctx.Repo.Repository |
|
|
|
|
|
|
|
|
|
|
|
err := secret_service.DeleteSecretByName(ctx, owner.ID, repo.ID, ctx.Params("secretname")) |
|
|
|
err := secret_service.DeleteSecretByName(ctx, 0, repo.ID, ctx.Params("secretname")) |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
if errors.Is(err, util.ErrInvalidArgument) { |
|
|
|
if errors.Is(err, util.ErrInvalidArgument) { |
|
|
|
ctx.Error(http.StatusBadRequest, "DeleteSecret", err) |
|
|
|
ctx.Error(http.StatusBadRequest, "DeleteSecret", err) |
|
|
|
|