mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-09 14:29:03 +00:00
WIP: basic backend for project-output-file agent
This commit is contained in:
parent
ead245721b
commit
e916d96792
2 changed files with 5 additions and 2 deletions
|
@ -8,7 +8,8 @@ _ = require 'underscore'
|
|||
module.exports = LinkedFilesController = {
|
||||
Agents: {
|
||||
url: require('./UrlAgent'),
|
||||
project_file: require('./ProjectFileAgent')
|
||||
project_file: require('./ProjectFileAgent'),
|
||||
project_output_file: require('./ProjectOutputFileAgent')
|
||||
}
|
||||
|
||||
_getAgent: (provider) ->
|
||||
|
|
|
@ -345,7 +345,9 @@ script(type='text/ng-template', id='newDocModalTemplate')
|
|||
// Project Linked Files Modal
|
||||
script(type='text/ng-template', id='projectLinkedFileModalTemplate')
|
||||
.modal-header
|
||||
h3 New file from Project ({{ isOutputFilesMode }})
|
||||
h3
|
||||
span(ng-if="!isOutputFilesMode") New file from Project
|
||||
span(ng-if="isOutputFilesMode") New file from Project output
|
||||
|
||||
.modal-body
|
||||
div
|
||||
|
|
Loading…
Add table
Reference in a new issue