Skip to content
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
d328e2a
corrected security specs
prkhrkat Aug 28, 2025
bcdb415
added more specs
prkhrkat Aug 29, 2025
c37f741
added more specs
prkhrkat Sep 1, 2025
88c5a4b
Merge branch 'develop' into api-specs-post
prkhrkat Sep 4, 2025
e8c77be
Merge branch 'develop' into api-specs-post
prkhrkat Sep 5, 2025
ad540f4
Merge branch 'develop' into api-specs-post
prkhrkat Sep 5, 2025
2ad718a
Merge remote-tracking branch 'origin/api-specs-post' into api-specs-post
prkhrkat Sep 5, 2025
fb357a5
fix: dex scopes override default required scopes (#6816)
SATYAsasini Sep 5, 2025
3e46c4e
Merge branch 'develop' into api-specs-post
prkhrkat Sep 8, 2025
5689376
sepcs
prkhrkat Sep 9, 2025
11058b3
sepcs
prkhrkat Sep 9, 2025
3a8302c
fix: get deployment history minor validations
SATYAsasini Sep 9, 2025
bdc2575
error handler correction
prkhrkat Sep 9, 2025
c388558
fix: get pre post deployment logs minor validations
SATYAsasini Sep 9, 2025
634635b
fix: get cd workflow detail and download deployment artifact param va…
SATYAsasini Sep 9, 2025
d3cac07
fix: get deployment status params error handling and messaging enhance
SATYAsasini Sep 9, 2025
c8013c1
fix: Trigger and Statuses POST api
SATYAsasini Sep 9, 2025
f397703
error handler correction
prkhrkat Sep 9, 2025
1ae65fb
Merge pull request #6824 from devtron-labs/ea-fail-fix-main
prkhrkat Sep 10, 2025
68fd0ba
added sql scripts
kartik-579 Sep 11, 2025
d2e4913
Merge pull request #6825 from devtron-labs/poll-plugin-sql
kartik-579 Sep 11, 2025
8732a60
release: PR for v1.8.0 (#6726)
systemsdt Sep 11, 2025
f972d27
eks detection
prkhrkat Sep 11, 2025
e95b7a4
Merge pull request #6826 from devtron-labs/eks-fix-main
prkhrkat Sep 11, 2025
2263ace
Merge branch 'develop' into api-specs-post
prkhrkat Sep 12, 2025
4ed7847
spec added git-material
prkhrkat Sep 15, 2025
99b719a
sync: sync from fix-api-post
SATYAsasini Sep 15, 2025
adeccfa
validations
prkhrkat Sep 15, 2025
7af78d0
Merge branch 'refs/heads/main' into api-specs-post
prkhrkat Sep 15, 2025
e01cbd9
validations
prkhrkat Sep 15, 2025
bb16d29
fix: api responses and specs
SATYAsasini Sep 17, 2025
b62d526
chore: resolving review comments
SATYAsasini Sep 17, 2025
1808f06
chore: resolving review comments
SATYAsasini Sep 17, 2025
46167fa
chore: resolving review comments
SATYAsasini Sep 17, 2025
4e5406d
Merge branch 'api-specs-post' into fix-api-phase-2
prkhrkat Sep 17, 2025
e7539b0
Merge pull request #6821 from devtron-labs/fix-api-phase-2
prkhrkat Sep 17, 2025
075b680
docs: deployment template api spec fixes (#6833)
SATYAsasini Sep 18, 2025
854d1c7
fix: post api fixes iteration-1 (#6835)
SATYAsasini Sep 19, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions api/restHandler/common/ParamParserUtils.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@
package common

import (
"github.com/devtron-labs/devtron/internal/util"
"github.com/gorilla/mux"
"net/http"
"strconv"
"strings"

"github.com/devtron-labs/devtron/internal/util"
"github.com/gorilla/mux"
)

const TokenHeaderKey = "token"
Expand Down
19 changes: 10 additions & 9 deletions pkg/build/trigger/HandlerService.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ import (
"context"
"errors"
"fmt"
"io/ioutil"
"net/http"
"os"
"path"
"path/filepath"
"slices"
"strconv"
"strings"
"time"

"github.com/argoproj/argo-workflows/v3/pkg/apis/workflow/v1alpha1"
"github.com/caarlos0/env"
"github.com/devtron-labs/common-lib/async"
Expand Down Expand Up @@ -60,16 +70,7 @@ import (
"github.com/devtron-labs/devtron/util/sliceUtil"
"github.com/go-pg/pg"
"go.uber.org/zap"
"io/ioutil"
"k8s.io/client-go/rest"
"net/http"
"os"
"path"
"path/filepath"
"slices"
"strconv"
"strings"
"time"
)

type HandlerService interface {
Expand Down
Loading