mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-02 20:52:22 +00:00
Merge pull request #992 from Bugagazavr/gitlab-zero-expiry
Since 7.10 token life unlimited
This commit is contained in:
commit
c475195537
1 changed files with 1 additions and 1 deletions
|
@ -268,7 +268,7 @@ func (r *Gitlab) OpenRegistration() bool {
|
||||||
|
|
||||||
func (r *Gitlab) GetToken(user *model.User) (*model.Token, error) {
|
func (r *Gitlab) GetToken(user *model.User) (*model.Token, error) {
|
||||||
expiry := time.Unix(user.TokenExpiry, 0)
|
expiry := time.Unix(user.TokenExpiry, 0)
|
||||||
if expiry.Sub(time.Now()) > (60 * time.Second) {
|
if user.TokenExpiry == 0 || expiry.Sub(time.Now()) > (60*time.Second) {
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue