diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-08-03 18:06:49 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-08-06 15:08:58 +0200 |
commit | 4504f09f6e85f09b0489debb547a17209d7176ea (patch) | |
tree | 1e2fdcdd3a0982f6e873205f69bdf90de7f4a883 /client/src/app/helpers/utils.ts | |
parent | 71ab65d02f359000f9ca6a00f163d66d56a33955 (diff) | |
download | PeerTube-4504f09f6e85f09b0489debb547a17209d7176ea.tar.gz PeerTube-4504f09f6e85f09b0489debb547a17209d7176ea.tar.zst PeerTube-4504f09f6e85f09b0489debb547a17209d7176ea.zip |
deal with refresh token in embed
Diffstat (limited to 'client/src/app/helpers/utils.ts')
-rw-r--r-- | client/src/app/helpers/utils.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/client/src/app/helpers/utils.ts b/client/src/app/helpers/utils.ts index 8e9f72adb..825b6ca96 100644 --- a/client/src/app/helpers/utils.ts +++ b/client/src/app/helpers/utils.ts | |||
@@ -81,15 +81,6 @@ function immutableAssign <A, B> (target: A, source: B) { | |||
81 | return Object.assign({}, target, source) | 81 | return Object.assign({}, target, source) |
82 | } | 82 | } |
83 | 83 | ||
84 | function objectToUrlEncoded (obj: any) { | ||
85 | const str: string[] = [] | ||
86 | for (const key of Object.keys(obj)) { | ||
87 | str.push(encodeURIComponent(key) + '=' + encodeURIComponent(obj[key])) | ||
88 | } | ||
89 | |||
90 | return str.join('&') | ||
91 | } | ||
92 | |||
93 | // Thanks: https://gist.github.com/ghinda/8442a57f22099bdb2e34 | 84 | // Thanks: https://gist.github.com/ghinda/8442a57f22099bdb2e34 |
94 | function objectToFormData (obj: any, form?: FormData, namespace?: string) { | 85 | function objectToFormData (obj: any, form?: FormData, namespace?: string) { |
95 | const fd = form || new FormData() | 86 | const fd = form || new FormData() |
@@ -207,7 +198,6 @@ export { | |||
207 | sortBy, | 198 | sortBy, |
208 | durationToString, | 199 | durationToString, |
209 | lineFeedToHtml, | 200 | lineFeedToHtml, |
210 | objectToUrlEncoded, | ||
211 | getParameterByName, | 201 | getParameterByName, |
212 | populateAsyncUserVideoChannels, | 202 | populateAsyncUserVideoChannels, |
213 | getAbsoluteAPIUrl, | 203 | getAbsoluteAPIUrl, |