Skip to content

Commit fae7ef0

Browse files
Merge pull request #4704 from linuxfoundation/unicron-move-to-a-different-org
Move 'github.com/communitybridge/easycla' -> 'github.com/linuxfoundation/easycla'
2 parents 420bee1 + 54882df commit fae7ef0

File tree

275 files changed

+1237
-1237
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

275 files changed

+1237
-1237
lines changed

.github/ISSUE_TEMPLATE/docs_update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ assignees: ''
1010

1111
Describe what has changed and which documents need updating
1212

13-
* [/docs/doc-to-update.md](https://github.com/communitybridge/easycla/blob/master/docs/)
13+
* [/docs/doc-to-update.md](https://github.com/linuxfoundation/easycla/blob/master/docs/)
1414

1515
## Tasks
1616

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ For EasyCLA version 2, all three consoles are hosted in separate repositories.
4444
* [Corporate Console](https://organization.lfx.linuxfoundation.org/company/dashboard) contains the old v1 Company Console
4545
capabilities. This new console includes not only the EasyCLA components, but also the company related features for LF
4646
ITX and other LFX Platform projects.
47-
* [Contributor Console](https://github.com/communitybridge/easycla-contributor-console) contains the old v1 Contributor Console
47+
* [Contributor Console](https://github.com/linuxfoundation/easycla-contributor-console) contains the old v1 Contributor Console
4848
capabilities with new features that integrate with the LFX Platform (including the Salesforce data).
4949

5050
For EasyCLA version 1, the consoles are:

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ The following versions are currently being supported with security updates.
1111

1212
## Reporting a Vulnerability
1313

14-
To report a vulnerability, create a new [GitHub issue](https://github.com/communitybridge/easycla/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc).
14+
To report a vulnerability, create a new [GitHub issue](https://github.com/linuxfoundation/easycla/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc).

bug-reporting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The EasyCLA team welcomes new feature requests and bug reports. Please file a
44
feature request, documentation update, or bug fix using the
5-
[GitHub Issues](https://github.com/communitybridge/easycla/issues) feature of
5+
[GitHub Issues](https://github.com/linuxfoundation/easycla/issues) feature of
66
this repository.
77

88
To file a new ticket, select 'New Issue' from the issues page. Select one of the

cla-backend-go/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ swagger-build-v1-services:
124124
--model-package=v1/models \
125125
--exclude-main \
126126
-A cla \
127-
-P github.com/communitybridge/easycla/cla-backend-go/user.CLAUser
127+
-P github.com/linuxfoundation/easycla/cla-backend-go/user.CLAUser
128128

129129
swagger-build-v2-services:
130130
@echo

cla-backend-go/approval_list/handlers.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ import (
88

99
"github.com/sirupsen/logrus"
1010

11-
"github.com/communitybridge/easycla/cla-backend-go/events"
12-
"github.com/communitybridge/easycla/cla-backend-go/gen/v1/models"
13-
"github.com/communitybridge/easycla/cla-backend-go/gen/v1/restapi/operations"
14-
"github.com/communitybridge/easycla/cla-backend-go/gen/v1/restapi/operations/company"
15-
log "github.com/communitybridge/easycla/cla-backend-go/logging"
16-
"github.com/communitybridge/easycla/cla-backend-go/signatures"
17-
"github.com/communitybridge/easycla/cla-backend-go/user"
18-
"github.com/communitybridge/easycla/cla-backend-go/utils"
1911
"github.com/go-openapi/runtime/middleware"
12+
"github.com/linuxfoundation/easycla/cla-backend-go/events"
13+
"github.com/linuxfoundation/easycla/cla-backend-go/gen/v1/models"
14+
"github.com/linuxfoundation/easycla/cla-backend-go/gen/v1/restapi/operations"
15+
"github.com/linuxfoundation/easycla/cla-backend-go/gen/v1/restapi/operations/company"
16+
log "github.com/linuxfoundation/easycla/cla-backend-go/logging"
17+
"github.com/linuxfoundation/easycla/cla-backend-go/signatures"
18+
"github.com/linuxfoundation/easycla/cla-backend-go/user"
19+
"github.com/linuxfoundation/easycla/cla-backend-go/utils"
2020
"github.com/savaki/dynastore"
2121
)
2222

cla-backend-go/approval_list/helpers.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"github.com/aws/aws-sdk-go/service/dynamodb"
99
"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute"
1010
"github.com/aws/aws-sdk-go/service/dynamodb/expression"
11-
"github.com/communitybridge/easycla/cla-backend-go/gen/v1/models"
12-
log "github.com/communitybridge/easycla/cla-backend-go/logging"
11+
"github.com/linuxfoundation/easycla/cla-backend-go/gen/v1/models"
12+
log "github.com/linuxfoundation/easycla/cla-backend-go/logging"
1313
)
1414

1515
// buildCclaWhitelistRequestsModels builds the request models

cla-backend-go/approval_list/repository.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ import (
77
"errors"
88
"fmt"
99

10-
models2 "github.com/communitybridge/easycla/cla-backend-go/project/models"
10+
models2 "github.com/linuxfoundation/easycla/cla-backend-go/project/models"
1111

1212
"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute"
1313
"github.com/aws/aws-sdk-go/service/dynamodb/expression"
14-
"github.com/communitybridge/easycla/cla-backend-go/utils"
1514
"github.com/gofrs/uuid"
15+
"github.com/linuxfoundation/easycla/cla-backend-go/utils"
1616
"github.com/sirupsen/logrus"
1717

18-
"github.com/communitybridge/easycla/cla-backend-go/gen/v1/models"
19-
log "github.com/communitybridge/easycla/cla-backend-go/logging"
18+
"github.com/linuxfoundation/easycla/cla-backend-go/gen/v1/models"
19+
log "github.com/linuxfoundation/easycla/cla-backend-go/logging"
2020

2121
"github.com/aws/aws-sdk-go/aws"
2222
"github.com/aws/aws-sdk-go/aws/session"

cla-backend-go/approval_list/service.go

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@ import (
99
"fmt"
1010
"net/http"
1111

12-
repository2 "github.com/communitybridge/easycla/cla-backend-go/project/repository"
13-
service2 "github.com/communitybridge/easycla/cla-backend-go/project/service"
12+
repository2 "github.com/linuxfoundation/easycla/cla-backend-go/project/repository"
13+
service2 "github.com/linuxfoundation/easycla/cla-backend-go/project/service"
1414

1515
"github.com/sirupsen/logrus"
1616

17-
"github.com/communitybridge/easycla/cla-backend-go/projects_cla_groups"
17+
"github.com/linuxfoundation/easycla/cla-backend-go/projects_cla_groups"
1818

19-
"github.com/communitybridge/easycla/cla-backend-go/emails"
19+
"github.com/linuxfoundation/easycla/cla-backend-go/emails"
2020

21-
"github.com/communitybridge/easycla/cla-backend-go/signatures"
22-
"github.com/communitybridge/easycla/cla-backend-go/utils"
21+
"github.com/linuxfoundation/easycla/cla-backend-go/signatures"
22+
"github.com/linuxfoundation/easycla/cla-backend-go/utils"
2323

24-
log "github.com/communitybridge/easycla/cla-backend-go/logging"
24+
log "github.com/linuxfoundation/easycla/cla-backend-go/logging"
2525

26-
"github.com/communitybridge/easycla/cla-backend-go/company"
27-
"github.com/communitybridge/easycla/cla-backend-go/user"
28-
"github.com/communitybridge/easycla/cla-backend-go/users"
26+
"github.com/linuxfoundation/easycla/cla-backend-go/company"
27+
"github.com/linuxfoundation/easycla/cla-backend-go/user"
28+
"github.com/linuxfoundation/easycla/cla-backend-go/users"
2929

30-
"github.com/communitybridge/easycla/cla-backend-go/gen/v1/models"
30+
"github.com/linuxfoundation/easycla/cla-backend-go/gen/v1/models"
3131
)
3232

3333
// errors

cla-backend-go/auth/auth0.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"net/http"
1010
"path"
1111

12-
log "github.com/communitybridge/easycla/cla-backend-go/logging"
1312
"github.com/golang-jwt/jwt/v4"
13+
log "github.com/linuxfoundation/easycla/cla-backend-go/logging"
1414
)
1515

1616
// Validator data model

0 commit comments

Comments
 (0)