From dc291a51f534b1062d642b8b1e9dab543d3d5f32 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 6 Mar 2024 15:13:54 +0100 Subject: [PATCH] fix(migration): do not expire trello token --- pkg/modules/migration/trello/trello.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/modules/migration/trello/trello.go b/pkg/modules/migration/trello/trello.go index 3ff894862..a286f3b32 100644 --- a/pkg/modules/migration/trello/trello.go +++ b/pkg/modules/migration/trello/trello.go @@ -74,7 +74,7 @@ func (m *Migration) Name() string { // @Router /migration/trello/auth [get] func (m *Migration) AuthURL() string { return "https://trello.com/1/authorize" + - "?expiration=1hour" + + "?expiration=never" + "&scope=read" + "&callback_method=fragment" + "&response_type=token" +