Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pleroma-fe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pleroma
pleroma-fe
Merge requests
!173
Feature/configurable default path
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/configurable default path
feature/configurable-default-path
into
develop
Overview
0
Commits
1
Pipelines
2
Changes
2
Merged
lain
requested to merge
feature/configurable-default-path
into
develop
7 years ago
Overview
0
Commits
1
Pipelines
2
Changes
2
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
2691579a
1 commit,
7 years ago
2 files
+
38
−
36
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/main.js
+
36
−
35
Options
@@ -63,54 +63,55 @@ const store = new Vuex.Store({
strict
:
process
.
env
.
NODE_ENV
!==
'
production
'
})
const
routes
=
[
{
name
:
'
root
'
,
path
:
'
/
'
,
redirect
:
'
/main/all
'
},
{
path
:
'
/main/all
'
,
component
:
PublicAndExternalTimeline
},
{
path
:
'
/main/public
'
,
component
:
PublicTimeline
},
{
path
:
'
/main/friends
'
,
component
:
FriendsTimeline
},
{
path
:
'
/tag/:tag
'
,
component
:
TagTimeline
},
{
name
:
'
conversation
'
,
path
:
'
/notice/:id
'
,
component
:
ConversationPage
,
meta
:
{
dontScroll
:
true
}
},
{
name
:
'
user-profile
'
,
path
:
'
/users/:id
'
,
component
:
UserProfile
},
{
name
:
'
mentions
'
,
path
:
'
/:username/mentions
'
,
component
:
Mentions
},
{
name
:
'
settings
'
,
path
:
'
/settings
'
,
component
:
Settings
},
{
name
:
'
registration
'
,
path
:
'
/registration
'
,
component
:
Registration
},
{
name
:
'
user-settings
'
,
path
:
'
/user-settings
'
,
component
:
UserSettings
}
]
const
router
=
new
VueRouter
({
mode
:
'
history
'
,
routes
,
scrollBehavior
:
(
to
,
from
,
savedPosition
)
=>
{
if
(
to
.
matched
.
some
(
m
=>
m
.
meta
.
dontScroll
))
{
return
false
}
return
savedPosition
||
{
x
:
0
,
y
:
0
}
}
})
const
i18n
=
new
VueI18n
({
locale
:
currentLocale
,
fallbackLocale
:
'
en
'
,
messages
})
/* eslint-disable no-new */
new
Vue
({
router
,
store
,
i18n
,
el
:
'
#app
'
,
render
:
h
=>
h
(
App
)
})
window
.
fetch
(
'
/static/config.json
'
)
.
then
((
res
)
=>
res
.
json
())
.
then
(({
name
,
theme
,
background
,
logo
,
registrationOpen
})
=>
{
.
then
((
data
)
=>
{
const
{
name
,
theme
,
background
,
logo
,
registrationOpen
}
=
data
store
.
dispatch
(
'
setOption
'
,
{
name
:
'
name
'
,
value
:
name
})
store
.
dispatch
(
'
setOption
'
,
{
name
:
'
theme
'
,
value
:
theme
})
store
.
dispatch
(
'
setOption
'
,
{
name
:
'
background
'
,
value
:
background
})
store
.
dispatch
(
'
setOption
'
,
{
name
:
'
logo
'
,
value
:
logo
})
store
.
dispatch
(
'
setOption
'
,
{
name
:
'
registrationOpen
'
,
value
:
registrationOpen
})
const
routes
=
[
{
name
:
'
root
'
,
path
:
'
/
'
,
redirect
:
data
[
'
defaultPath
'
]
||
'
/main/all
'
},
{
path
:
'
/main/all
'
,
component
:
PublicAndExternalTimeline
},
{
path
:
'
/main/public
'
,
component
:
PublicTimeline
},
{
path
:
'
/main/friends
'
,
component
:
FriendsTimeline
},
{
path
:
'
/tag/:tag
'
,
component
:
TagTimeline
},
{
name
:
'
conversation
'
,
path
:
'
/notice/:id
'
,
component
:
ConversationPage
,
meta
:
{
dontScroll
:
true
}
},
{
name
:
'
user-profile
'
,
path
:
'
/users/:id
'
,
component
:
UserProfile
},
{
name
:
'
mentions
'
,
path
:
'
/:username/mentions
'
,
component
:
Mentions
},
{
name
:
'
settings
'
,
path
:
'
/settings
'
,
component
:
Settings
},
{
name
:
'
registration
'
,
path
:
'
/registration
'
,
component
:
Registration
},
{
name
:
'
user-settings
'
,
path
:
'
/user-settings
'
,
component
:
UserSettings
}
]
const
router
=
new
VueRouter
({
mode
:
'
history
'
,
routes
,
scrollBehavior
:
(
to
,
from
,
savedPosition
)
=>
{
if
(
to
.
matched
.
some
(
m
=>
m
.
meta
.
dontScroll
))
{
return
false
}
return
savedPosition
||
{
x
:
0
,
y
:
0
}
}
})
/* eslint-disable no-new */
new
Vue
({
router
,
store
,
i18n
,
el
:
'
#app
'
,
render
:
h
=>
h
(
App
)
})
})
window
.
fetch
(
'
/static/terms-of-service.html
'
)
Loading