Skip to content
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

[FEATURE]: Hide cards from others #302

Merged
merged 47 commits into from
Jul 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
bf45c81
feat(backend): hide cards from others
dsousa12 Jun 30, 2022
d285f14
feat: frontend hide cards from others
CatiaBarroco-xgeeks Jul 1, 2022
cf87e56
feat: frontend hide-cards-from-others icons
CatiaBarroco-xgeeks Jul 1, 2022
bd0864c
feat: disabel the card icons
CatiaBarroco-xgeeks Jul 1, 2022
5fce2e5
feat: disable card icon dots
CatiaBarroco-xgeeks Jul 4, 2022
7f7dd76
feat: add new util replaceChar
CatiaBarroco-xgeeks Jul 4, 2022
82b935a
feat: pr sugestions
CatiaBarroco-xgeeks Jul 6, 2022
7527dad
fix: switchs (#300)
dvpfran Jul 4, 2022
1a217bd
[FEATURE]: Remove "Option to post cards anonymously" from Board Setti…
joaosantos99 Jul 4, 2022
9017ed2
[FIX]: Disable Limit Votes (#307)
dvpfran Jul 7, 2022
7b5e3c4
fix: rebase
tutods Jul 13, 2022
704e67c
[FIX]: Remove Votes options from Board Settings on Sub-boards (#312)
joaosantos99 Jul 7, 2022
da4e8e8
chore(deps): bump next-auth from 4.6.1 to 4.9.0 in /frontend (#314)
dependabot[bot] Jul 8, 2022
2cc35cd
[FIX]: Missing upper case validation on register user (#317)
joaosantos99 Jul 8, 2022
6282fa6
docs: add geomarb as a contributor for code, doc (#322)
allcontributors[bot] Jul 12, 2022
0fc18ef
[FIX]: Extra votes left on card (#308)
joaosantos99 Jul 12, 2022
8575735
[FIX]: Edit cards from others (#320)
dvpfran Jul 12, 2022
f7d7141
[FIX]: totalUsedVotes type error (#325)
joaosantos99 Jul 12, 2022
472e49f
Fix build errors (#327)
joaosantos99 Jul 12, 2022
fd7e844
chore(deps): bump moment from 2.29.3 to 2.29.4 in /backend (#323)
dependabot[bot] Jul 12, 2022
f75e5d2
[FIX]: Deleting a card will not return votes to users (#319)
FranciscoGaspar Jul 13, 2022
b0bc66a
[FEATURE]: hide votes from others on the board (#309)
mourabraz Jul 13, 2022
63f2ff1
feat: frontend hide cards from others
CatiaBarroco-xgeeks Jul 1, 2022
89a5c25
feat: disable card icon dots
CatiaBarroco-xgeeks Jul 4, 2022
3a8af76
feat: add new util replaceChar
CatiaBarroco-xgeeks Jul 4, 2022
052f311
feat: pr sugestions
CatiaBarroco-xgeeks Jul 6, 2022
370489c
feat: improve concurrently scripts
tutods Jul 13, 2022
77f0f07
fix: title warning
tutods Jul 13, 2022
67952c3
fix: register and use socket on update board
tutods Jul 14, 2022
f4381b5
fix: register and use socket on update board
tutods Jul 14, 2022
45d1e22
fix: register and use socket on update board
tutods Jul 14, 2022
3d49354
feat: update pre-commit config
tutods Jul 14, 2022
d51c5be
feat: update pre-commit config
tutods Jul 14, 2022
eb33e30
feat: update pre-commit config
tutods Jul 14, 2022
4ba7802
feat: update pre-commit config
tutods Jul 14, 2022
81e909f
feat: start backend refactoring
tutods Jul 14, 2022
8720416
fix: remove console.log
tutods Jul 14, 2022
ab5a329
feat: refactoring backend
tutods Jul 14, 2022
e19b65e
chore: functions for css blur filters
f-morgado Jul 14, 2022
03ddeb3
Merge branch 'main' into feat-hide-cards-from-others
CatiaBarroco-xgeeks Jul 14, 2022
ad9b910
fix: pr conflits
CatiaBarroco-xgeeks Jul 14, 2022
5b1cadb
fix: backend tests
CatiaBarroco-xgeeks Jul 14, 2022
2b6a48d
fix: github conflits
CatiaBarroco-xgeeks Jul 14, 2022
60cfc74
fix: github conflits
CatiaBarroco-xgeeks Jul 14, 2022
e73331b
fix: github issues
f-morgado Jul 14, 2022
b5b9008
fix: dependencies
tutods Jul 14, 2022
0869d46
chore: improve replaceCard method
tutods Jul 14, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,4 @@ node_modules
.env.dev
.env.staging

frontend/package-lock.json

frontend/.vscode/
20 changes: 19 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm run pre-commit

# Set root folder
rootDir=$PWD

# Set folders to run lint-staged
folders=("backend" "frontend")

# Loop on array of folders
for folder in "${folders[@]}"
do
# To improve the feedback, show the folder name
echo "\n━━━ ${folder} ━━━\n"
cd ${rootDir}/${folder}

# Note: this command needs to be present on scripts inside each package.json
npm run pre-commit
done

# npm run pre-commit
12 changes: 6 additions & 6 deletions backend/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ module.exports = {
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'airbnb',
'airbnb-typescript',
'airbnb-base',
'airbnb-typescript/base',
'plugin:prettier/recommended',
'prettier',
],
Expand All @@ -31,9 +31,9 @@ module.exports = {
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/naming-convention': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-empty-interface' : 'off',
"import/no-cycle": "off",
"prefer-destructuring": "off",
"no-plusplus": "off",
'@typescript-eslint/no-empty-interface': 'off',
'import/no-cycle': 'off',
'prefer-destructuring': 'off',
'no-plusplus': 'off',
},
};
Loading