13 lines
962 B
Text
13 lines
962 B
Text
- current_route_path = request.fullpath.match(/-\/tree\/[^\/]+\/(.+$)/).to_a[1]
|
|
- add_page_startup_graphql_call('repository/path_last_commit', { projectPath: @project.full_path, ref: current_ref, path: current_route_path || "" })
|
|
- add_page_startup_graphql_call('repository/permissions', { projectPath: @project.full_path })
|
|
- add_page_startup_graphql_call('repository/files', { nextPageCursor: "", pageSize: 100, projectPath: @project.full_path, ref: current_ref, path: current_route_path || "/"})
|
|
- breadcrumb_title _("Repository")
|
|
- @content_class = "limit-container-width" unless fluid_layout
|
|
|
|
- page_title @path.presence || _("Files"), @ref
|
|
= content_for :meta_tags do
|
|
= auto_discovery_link_tag(:atom, project_commits_url(@project, @ref, rss_url_options), title: "#{@project.name}:#{@ref} commits")
|
|
|
|
= render 'projects/last_push'
|
|
= render 'projects/files', commit: @last_commit, project: @project, ref: @ref, content_url: project_tree_path(@project, @id)
|