-
-
Notifications
You must be signed in to change notification settings - Fork 53
feat: archive and restore wishes #183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
cj13579
wants to merge
27
commits into
Wingysam:master
Choose a base branch
from
cj13579:archive-wishes
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
433f3ef
watch for pug file changes and rebuild
cj13579 63c4307
support archive and restore in table mode
cj13579 e73e8c0
add card support and delete confirmation
cj13579 870ef01
add support for pledge auto archiving
cj13579 5795bb1
add docs for auto archiving
cj13579 07d7541
only list active items
cj13579 7a7bd1b
remove unnecessary comma
cj13579 732d996
fix order or archive table columns
cj13579 debbacc
Merge branch 'master' into archive-wishes
cj13579 f944297
pugs don't need rebuilds, rappers do
cj13579 eae7599
add parentheses for readability
cj13579 b088c7b
move wishlist generation to mixins
cj13579 e39125e
Merge branch 'master' into archive-wishes
cj13579 01a7d3d
Merge branch 'master' into archive-wishes
cj13579 43fbd20
expandable menu of options to declutter table
cj13579 85112b6
localized sensible heading
cj13579 b8660fd
Merge remote-tracking branch 'origin' into archive-wishes
Wingysam 7734271
Merge remote-tracking branch 'origin' into archive-wishes
Wingysam a937789
Merge remote-tracking branch 'origin' into archive-wishes
Wingysam 9405ff2
fix linting issues
cj13579 1b2f506
add linting convenience script
cj13579 afe5a84
discord like table options (wip)
cj13579 ad5b3d8
Possible solution for #154?
cj13579 0e11329
Resolve auto archiving issue
cj13579 798512e
Fix code style issues with Prettier
lint-action 4f601cc
Merge branch 'master' into archive-wishes
cj13579 7a8b5a7
add "super admin" capability
cj13579 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
---|---|---|
|
@@ -10,7 +10,8 @@ | |
"dev": "nodemon --watch src -e ts,js --exec 'npm run build && node built/index.js'", | ||
"postinstall": "node postinstall.cjs", | ||
"build": "tsc", | ||
"release": "docker buildx build . --platform linux/amd64,linux/arm64 -t wingysam/christmas-community -t wingysam/christmas-community:$(./node_modules/node-jq/bin/jq -r .version < package.json) --push" | ||
"release": "docker buildx build . --platform linux/amd64,linux/arm64 -t wingysam/christmas-community -t wingysam/christmas-community:$(./node_modules/node-jq/bin/jq -r .version < package.json) --push", | ||
"lint": "eslint src && prettier . --write" | ||
}, | ||
"author": "Wingysam <[email protected]>", | ||
"license": "AGPL-3.0", | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be updated to pass this logic into the
itemsVisibleToUser
function. I'll do that.