A Steam bot that accepts item donations.
Basically, it accepts any offer that doesn't ask for any items from its inventory.
Feel free to use if you want to accept item donations for your project, or modify it as you see fit.
| Verb | URI | Action | Route Name | View | Policy | Middleware |
|---|---|---|---|---|---|---|
| GET | /resources | index | resources.index | resources.list | list | can:list,Resource::class |
| GET | /resources/create | create | resources.create | resources.create | create | can:create,Resource::class |
| POST | /resources | store | resources.store | create | can:create,Resource::class | |
| GET | /resources/{resource} | show | resources.show | resources.show | view | can:view,resource |
| GET | /resources/{resource}/edit | edit | resources.edit | resources.edit | update | can:update,resource |
|
| http { | |
| log_format bodylog '$remote_addr - $remote_user [$time_local] ' | |
| '"$request" $status $body_bytes_sent ' | |
| '"$http_referer" "$http_user_agent" $request_time ' | |
| '<"$request_body" >"$resp_body"'; | |
| lua_need_request_body on; | |
| set $resp_body ""; | |
| body_filter_by_lua ' |