##// END OF EJS Templates
fix(permissions): added a common way to update private flag via repo model...
fix(permissions): added a common way to update private flag via repo model - this allows to have a one and only one way to control the flag with the business logic shared - added test for that - changed view to use this method instead of DB update and custom permissions flush - fixed a case when update of repo settings didn't flush permissions actually while it should when private flag changed

File last commit:

r5231:fd3fdcb7 default
r5551:5b9b5ed2 default
Show More
static-file-check.sh
30 lines | 656 B | application/x-sh | BashLexer
# check required files
# run like this: rhodecode/tests/scripts/static-file-check.sh rhodecode/public/
STATIC_CHECK="\
robots.txt \
502.html \
js/scripts.min.js \
js/rhodecode-components.js \
css/style.css \
css/style-polymer.css \
css/style-ipython.css"
static_path=$1
echo "checking the path for static files in dir: '$static_path'"
if [ ! -d $static_path ]; then
echo "path $static_path is not a valid directory"
exit 1
fi
for file in $STATIC_CHECK;
do
path=$static_path$file
printf "checking $path..."
if [ ! -f $path ]; then
echo ""
echo "Missing a static file:$path expected after web-build"
exit 1
fi
printf "ok\n"
done