freechat/server
shockrah 08e5b87ba4 Helper functionality
InviteRow now has some utilities built into it to help with translating values from various types needed throughout the codebase
+from_tuple -> because mysql is used to grab tuples before structs
+as_json_str -> because we respond primarily with json payloads
list_channels is considered a main entry point from the dispather and thus handles errors  itself
2020-06-02 22:04:54 -07:00
..
migrations removed perms and limit on channels until channels module is done 2020-06-02 22:01:21 -07:00
scripts Rocket config changed to match the .env 2020-03-07 18:50:48 -08:00
src Helper functionality 2020-06-02 22:04:54 -07:00
.env minor config change for development 2020-03-07 16:07:26 -08:00
.gitignore ignoring dev files for sql server 2019-12-01 21:53:07 -08:00
Cargo.lock adding mysql_async to dependancy list 2020-06-01 23:05:06 -07:00
Cargo.toml adding mysql_async to dependancy list 2020-06-01 23:05:06 -07:00
Config.toml moved goalposts LULW 2019-11-12 11:19:44 -08:00
readme.md New smol note regarding state of API server 2020-05-27 20:59:17 -07:00
todo clarified goals 2020-03-17 21:34:43 -07:00
todo.md structures for authentication payloads 2020-02-13 17:13:41 -08:00

Freechat API

Built with rocket this API lets client apps query the server for data like recent messages channels in a server.

What's Being worked on

Authorization model has been implemented and is now being integrated with endpoints where required. Not all endpoints require authentication but really those are more like exceptions rather than the rule as most of this API is behind some kind of authentication.