mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-07-19 19:58:41 -04:00
Determine webclient path by the python module it is contained in
This commit is contained in:
parent
4e52f9699b
commit
dca3ba2f77
2 changed files with 5 additions and 2 deletions
|
@ -42,6 +42,7 @@ import os
|
|||
import re
|
||||
import sys
|
||||
import sqlite3
|
||||
import syweb
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
@ -58,7 +59,9 @@ class SynapseHomeServer(HomeServer):
|
|||
return JsonResource()
|
||||
|
||||
def build_resource_for_web_client(self):
|
||||
return File("webclient") # TODO configurable?
|
||||
syweb_path = os.path.dirname(syweb.__file__)
|
||||
webclient_path = os.path.join(syweb_path, "webclient")
|
||||
return File(webclient_path) # TODO configurable?
|
||||
|
||||
def build_resource_for_content_repo(self):
|
||||
return ContentRepoResource(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue