File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ defmodule ErrorTracker.Web.Router do
34
34
# paths for navigating through the dashboard.
35
35
scoped_path = Phoenix.Router . scoped_path ( __MODULE__ , path )
36
36
# Generate the session name and session hooks.
37
- { session_name , session_opts } = parse_options ( opts , scoped_path )
37
+ { session_name , session_opts } = ErrorTracker.Web.Router . __parse_options__ ( opts , scoped_path )
38
38
39
39
scope path , alias: false , as: false do
40
40
import Phoenix.LiveView.Router , only: [ live: 4 , live_session: 3 ]
@@ -49,7 +49,7 @@ defmodule ErrorTracker.Web.Router do
49
49
end
50
50
51
51
@ doc false
52
- def parse_options ( opts , path ) do
52
+ def __parse_options__ ( opts , path ) do
53
53
custom_on_mount = Keyword . get ( opts , :on_mount , [ ] )
54
54
session_name = Keyword . get ( opts , :as , :error_tracker_dashboard )
55
55
You can’t perform that action at this time.
0 commit comments