Skip to content

Commit

Permalink
magentacloud customizations
Browse files Browse the repository at this point in the history
  • Loading branch information
memurats committed Aug 27, 2024
1 parent a8997e7 commit e959feb
Show file tree
Hide file tree
Showing 34 changed files with 67 additions and 49 deletions.
11 changes: 11 additions & 0 deletions COPYING
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Although the code for this Magentacloud custom web theme for Nextcloud
is free and available under the GPL 3 license below, Deutsche Telekom
(including T-Systems) fully reserves all rights to the Telekom brand.
To prevent users from getting confused about the source of a digital
product or experience, there are stringent restrictions on using the
Telekom brand and design, even when built into code that we provide.
For any customization other than explicitly for Telekom or T-Systems,
you must replace the Deutsche Telekom and T-Systems brand elements
contained in the provided sources.


GNU AFFERO GENERAL PUBLIC LICENSE
Version 3, 19 November 2007

Expand Down
4 changes: 2 additions & 2 deletions js/photos-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-main.js.map

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/photos-public.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-public.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/photos-sidebar.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-sidebar.js.map

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/photos-src_views_AlbumContent_vue.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-src_views_AlbumContent_vue.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/photos-src_views_Albums_vue.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-src_views_Albums_vue.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/photos-src_views_Folders_vue.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-src_views_Folders_vue.js.map

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion src/components/HeaderNavigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -144,13 +144,20 @@ export default {
const path = regex.exec(this.parentPath)[1]

// apply to current route
const { name, params } = Object.assign({}, this.$route, {
let { name, params } = Object.assign({}, this.$route, {
params: this.params || { path },
})

// return the full object as we don't care about
// an empty path if this is route
if (path === '') {

// for the root path of the albums view we have to alter name
// as it uses a separate route and component
if (name === 'albumsContent') {
name = 'albums'
}

return { name }
}

Expand Down

0 comments on commit e959feb

Please sign in to comment.