-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
File Sandboxing, Directory Limiting, and Multiple Template Sources (#164
) * * Update for sandboxed NIOLeafFiles configuration * Pin to Vapor4 release * - * * Update test to show configuring custom sandbox on NIOLeafFiles * * Update for `LeafSources` * - * * Pin LeafKit from 1.0.0-rc.1.11
- Loading branch information
Showing
5 changed files
with
96 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import Vapor | ||
|
||
|
||
extension Application.Leaf { | ||
/// Deprecated in Leaf-Kit 1.0.0rc-1.?? | ||
@available(*, deprecated, message: "Use .sources instead of .files") | ||
public var files: LeafSource { | ||
get { | ||
fatalError("Unavailable") | ||
} | ||
nonmutating set { | ||
self.storage.sources = .singleSource(newValue) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters