From 25a9eae74b6164ffc52cdbb60a919f3ef66b7309 Mon Sep 17 00:00:00 2001 From: Jessica McKellar Date: Wed, 5 Mar 2014 11:50:13 -0500 Subject: [PATCH] Enabled authed uploads for Bargain Bit. (imported from commit f793b7ac41341384b914168a3fc5ed637d63a645) --- zerver/lib/upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zerver/lib/upload.py b/zerver/lib/upload.py index 93ca6ef572..f40a76601f 100644 --- a/zerver/lib/upload.py +++ b/zerver/lib/upload.py @@ -94,7 +94,7 @@ def get_file_info(request, user_file): return uploaded_file_name, content_type def authed_upload_enabled(realm): - return realm.domain in ('zulip.com', 'squarespace.com') + return realm.domain in ('zulip.com', 'squarespace.com', 'bargainbit.com') def upload_message_image_s3(uploaded_file_name, content_type, file_data, user_profile, private=None, target_realm=None): if private is None: