1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Allow Conpherence room images up to 200px

Summary: Provide higher resolution for Conpherence room images. Fixes T11728

Test Plan:
Upload a new photo, see it pulls in 200px image as background.

{F1858660}

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T11728

Differential Revision: https://secure.phabricator.com/D16659
This commit is contained in:
Chad Little 2016-10-03 13:39:39 -07:00
parent 3ce3ce957d
commit 75fe750ee3

View file

@ -5,7 +5,7 @@ final class ConpherenceImageData extends ConpherenceConstants {
const SIZE_ORIG = 'original';
const SIZE_CROP = 'crop';
const CROP_WIDTH = 35;
const CROP_HEIGHT = 35;
const CROP_WIDTH = 200;
const CROP_HEIGHT = 200;
}