()
| 186 | } |
| 187 | |
| 188 | static async isPublicFileSharingAllowed(): Promise<boolean> { |
| 189 | await this.loadConfig(); |
| 190 | |
| 191 | return this.config.files.allowPublicSharing; |
| 192 | } |
| 193 | |
| 194 | static async areDirectoryDownloadsAllowed(): Promise<boolean> { |
| 195 | await this.loadConfig(); |
no test coverage detected