mirror of https://github.com/zulip/zulip.git
images: Move /team images into landing-page directory.
This commit is contained in:
parent
454c6db177
commit
7e3388dd9e
Before Width: | Height: | Size: 174 KiB After Width: | Height: | Size: 174 KiB |
|
@ -34,7 +34,7 @@
|
|||
<!-- Tim -->
|
||||
<div class="profile bdfl">
|
||||
<div class="profile-picture">
|
||||
<img src="/static/images/team/tim.png" alt="" />
|
||||
<img src="/static/images/landing-page/team/tim.png" alt="" />
|
||||
</div>
|
||||
<div class="profile-information">
|
||||
<div class="profile-name">Tim Abbott</div>
|
||||
|
|
|
@ -24,7 +24,7 @@ def generate_dev_ldap_dir(mode: str, num_users: int = 8) -> Dict[str, Dict[str,
|
|||
ldap_data.append((name, email, phone_number, birthdate))
|
||||
|
||||
profile_images = []
|
||||
for path in glob.glob(os.path.join(static_path("images/team"), "*")):
|
||||
for path in glob.glob(os.path.join(static_path("images/landing-page/team"), "*")):
|
||||
with open(path, "rb") as f:
|
||||
profile_images.append(f.read())
|
||||
ldap_dir = {}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"sn": ["Hamlet"],
|
||||
"homePhone": ["123456789"],
|
||||
"birthDate": ["1900-09-08"],
|
||||
"jpegPhoto": "file:static/images/team/tim.png"
|
||||
"jpegPhoto": "file:static/images/landing-page/team/tim.png"
|
||||
},
|
||||
|
||||
"uid=cordelia,ou=users,dc=zulip,dc=com": {
|
||||
|
@ -38,7 +38,7 @@
|
|||
"uid": ["newuser"],
|
||||
"sn": ["shortname"],
|
||||
"homePhone": ["a-new-number"],
|
||||
"jpegPhoto": "file:static/images/team/tim.png"
|
||||
"jpegPhoto": "file:static/images/landing-page/team/tim.png"
|
||||
},
|
||||
|
||||
"uid=newuser_splitname,ou=users,dc=zulip,dc=com": {
|
||||
|
|
|
@ -6047,7 +6047,9 @@ class TestLDAP(ZulipLDAPTestCase):
|
|||
assert url is not None
|
||||
response = self.client_get(url)
|
||||
self.assertEqual(response.status_code, 200)
|
||||
with open(os.path.join(settings.DEPLOY_ROOT, "static/images/team/tim.png"), "rb") as f:
|
||||
with open(
|
||||
os.path.join(settings.DEPLOY_ROOT, "static/images/landing-page/team/tim.png"), "rb"
|
||||
) as f:
|
||||
tim = f.read()
|
||||
self.assert_streaming_content(response, resize_avatar(tim, DEFAULT_AVATAR_SIZE))
|
||||
|
||||
|
|
Loading…
Reference in New Issue