From f13f4d97163f308e98bf2bbd008fc6aa6938988c Mon Sep 17 00:00:00 2001 From: Leif Battermann Date: Thu, 16 Nov 2023 13:49:02 +0000 Subject: [PATCH 1/3] change type of param to string --- libs/wire-api/src/Wire/API/Team/Feature.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/wire-api/src/Wire/API/Team/Feature.hs b/libs/wire-api/src/Wire/API/Team/Feature.hs index c8b1e00c20..00a025afdb 100644 --- a/libs/wire-api/src/Wire/API/Team/Feature.hs +++ b/libs/wire-api/src/Wire/API/Team/Feature.hs @@ -460,7 +460,7 @@ instance FromHttpApiData (FeatureTTL' u) where parseQueryParam = maybeToEither invalidTTLErrorString . fromByteString . T.encodeUtf8 instance S.ToParamSchema (FeatureTTL' u) where - toParamSchema _ = S.toParamSchema (Proxy @Int) + toParamSchema _ = S.toParamSchema (Proxy @Text) instance ToByteString (FeatureTTL' u) where builder FeatureTTLUnlimited = "unlimited" From 34c1abe196d203c6e504d293bbfe641a56b0646c Mon Sep 17 00:00:00 2001 From: Leif Battermann Date: Thu, 16 Nov 2023 13:51:15 +0000 Subject: [PATCH 2/3] changelog --- changelog.d/5-internal/PR-3723 | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/5-internal/PR-3723 diff --git a/changelog.d/5-internal/PR-3723 b/changelog.d/5-internal/PR-3723 new file mode 100644 index 0000000000..7448706fc5 --- /dev/null +++ b/changelog.d/5-internal/PR-3723 @@ -0,0 +1 @@ +stern/backoffice `PUT /teams/{teamId}/features/conferenceCalling` fixed From 343bea8bec34f58cb3b22b318fdd49e434f15830 Mon Sep 17 00:00:00 2001 From: Matthias Fischmann Date: Fri, 17 Nov 2023 13:55:59 +0100 Subject: [PATCH 3/3] hi ci