flask_sandboy
flask_sandboy copied to clipboard
WriteService that not a ReadService
Hi,
What do you think about having a WriteService that is truly able to write only, not read? This would be useful for applications that openly consume information that might be sensitive/personal. You probably don't want to make that information openly readable though. That's just an example off the top of my head. There are probably better use cases existing out in the wild.
This would also imply renaming the current WriteService to ReadWriteService. There is potential breakage there, but I like accurate names and, if it's going to happen, the sooner the better.
from service.py : class WriteService(ReadService):
thanks.