-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into feature/allow_insecur…
…e_links
- Loading branch information
Showing
36 changed files
with
889 additions
and
92 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
name: Bug report | ||
about: Report a bug in YeetFile | ||
title: "[BUG] (describe bug)" | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Please check the box indicating where you encountered the bug:** | ||
|
||
- [ ] Self-hosted instance | ||
- [ ] Official instance (yeetfile.com) | ||
|
||
**Describe the bug** | ||
|
||
|
||
|
||
**If self-hosted, please include non-private environment variables below** | ||
|
||
```sh | ||
# Paste environment variables below these lines | ||
# Do not include secret vars, like YEETFILE_DB_XXXX, YEETFILE_SECRET_KEY, etc | ||
|
||
``` |
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,10 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest a new feature for YeetFile | ||
title: "[FEATURE] (describe feature here)" | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe your requested feature below:** |
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
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,5 @@ | ||
ALTER TABLE metadata ADD COLUMN owner_id text DEFAULT ''; | ||
UPDATE metadata SET owner_id = ''; | ||
|
||
ALTER TABLE metadata ADD COLUMN modified TIMESTAMP DEFAULT now(); | ||
UPDATE metadata SET modified = now(); |
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
Oops, something went wrong.