Skip to content

Commit

Permalink
Merge pull request #11690 from archesproject/brf/11689_fix_symlink_re…
Browse files Browse the repository at this point in the history
…sources

11689 - Get real path for app paths
  • Loading branch information
chrabyrd authored Dec 16, 2024
2 parents 1732077 + 68d7b39 commit 5ad7a33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion arches/settings_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def list_arches_app_names():

def list_arches_app_paths():
return [
config.module.__path__[0]
os.path.realpath(config.module.__path__[0])
for config in apps.get_app_configs()
if getattr(config, "is_arches_application", False)
]
Expand Down
1 change: 1 addition & 0 deletions releases/7.6.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- Cache resource relationship preflabels to improve report load time #[11583](https://github.com/archesproject/arches/issues/11583)
- Fix for bug that prevents saving tab name changes in a tabbed report #[11617](https://github.com/archesproject/arches/issues/11617)
- Fix regression where Arches is no longer overriding Django admin templates #[11668](https://github.com/archesproject/arches/issues/11668)
- Fix bug causing app resources with symlink in their path to not resolve #[11689](https://github.com/archesproject/arches/issues/11689)
- Fix bug causing the Edit button to not display in the map popup #[11679](https://github.com/archesproject/arches/issues/11679)

### Dependency changes:
Expand Down

0 comments on commit 5ad7a33

Please sign in to comment.