rr- / szurubooru

Image board engine, Danbooru-style.
GNU General Public License v3.0
664 stars 175 forks source link

Adding option to disable the _get_disk_usage #638

Open Theenoro opened 4 months ago

Theenoro commented 4 months ago

It's solving this issue #449 in https://github.com/rr-/szurubooru/issues/449#issuecomment-1416593833

I've added the configuration part and the python part to disable the function (_get_disk_usage) in the info api. It's useful to boost up the page speed in the trade of the disk usage indicator.

phil-flip commented 4 months ago

Thank you for the PR. I don't code Python, but looking at other code lines it might be more standardized, when using true/false as the value and removing == 1.

Theenoro commented 4 months ago

Thank you for the PR. I don't code Python, but looking at other code lines it might be more standardized, when using true/false as the value and removing == 1.

yes, but I also found something in the options with yes/no. I actually dunno why I used 1/0 instead of true/false but I've changed it.