Skip to content

Instantly share code, notes, and snippets.

@rodber
Created July 14, 2021 20:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rodber/05b49a1b5e0dc3df0ff31bdc3d6a9436 to your computer and use it in GitHub Desktop.
Save rodber/05b49a1b5e0dc3df0ff31bdc3d6a9436 to your computer and use it in GitHub Desktop.
Showoff
├── api-v1
│ └── api
│ └── 1
│ └── upload
│ └── POST.php
├── api-v4
│ └── api
│ └── 4
│ ├── account
│ │ └── settings
│ │ └── {name}
│ │ └── PATCH.php
│ ├── albums
│ │ ├── bulk
│ │ │ └── parent
│ │ │ └── PATCH.php
│ │ ├── {id}
│ │ │ ├── DELETE.php
│ │ │ ├── like
│ │ │ │ ├── DELETE.php
│ │ │ │ └── POST.php
│ │ │ └── PATCH.php
│ │ ├── list
│ │ │ └── GET.php
│ │ └── POST.php
│ ├── bans
│ │ ├── ipv4
│ │ │ ├── {ip}
│ │ │ │ ├── DELETE.php
│ │ │ │ └── PATCH.php
│ │ │ └── POST.php
│ │ └── ipv6
│ │ ├── {ip}
│ │ │ ├── DELETE.php
│ │ │ └── PATCH.php
│ │ └── POST.php
│ ├── categories
│ │ ├── DELETE.php
│ │ ├── PATCH.php
│ │ └── POST.php
│ ├── images
│ │ ├── bulk
│ │ │ ├── album
│ │ │ │ └── PATCH.php
│ │ │ ├── approve
│ │ │ │ └── PATCH.php
│ │ │ ├── category
│ │ │ │ └── PATCH.php
│ │ │ └── nsfw
│ │ │ └── PATCH.php
│ │ ├── {id}
│ │ │ ├── approve
│ │ │ │ └── PATCH.php
│ │ │ ├── DELETE.php
│ │ │ ├── like
│ │ │ │ ├── DELETE.php
│ │ │ │ └── POST.php
│ │ │ └── PATCH.php
│ │ ├── list
│ │ │ └── GET.php
│ │ └── upload
│ │ ├── base64
│ │ │ └── POST.php
│ │ ├── binary
│ │ │ └── POST.php
│ │ └── url
│ │ └── POST.php
│ ├── imports
│ │ ├── {id}
│ │ │ ├── DELETE.php
│ │ │ ├── GET.php
│ │ │ ├── PATCH.php
│ │ │ ├── process
│ │ │ │ └── POST.php
│ │ │ ├── reset
│ │ │ │ └── POST.php
│ │ │ └── resume
│ │ │ └── POST.php
│ │ └── POST.php
│ ├── notifications
│ │ └── social
│ │ ├── GET.php
│ │ └── {id}
│ │ └── PATCH.php
│ ├── stats
│ │ └── rebuild
│ │ └── POST.php
│ ├── storages
│ │ ├── {id}
│ │ │ ├── migrate
│ │ │ │ └── POST.php
│ │ │ ├── PATCH.php
│ │ │ └── stats
│ │ │ └── regen
│ │ │ └── POST.php
│ │ └── POST.php
│ ├── tools
│ │ ├── id
│ │ │ └── {id}
│ │ │ ├── decode
│ │ │ │ └── GET.PHP
│ │ │ └── encode
│ │ │ └── GET.php
│ │ └── probe
│ │ └── email
│ │ └── POST.php
│ └── users
│ ├── {id}
│ │ ├── assets
│ │ │ ├── avatar
│ │ │ │ ├── DELETE.php
│ │ │ │ └── POST.php
│ │ │ └── background
│ │ │ ├── DELETE.php
│ │ │ └── POST.php
│ │ ├── DELETE.php
│ │ ├── disconnect
│ │ │ └── POST.php
│ │ ├── export
│ │ │ └── GET.php
│ │ └── follow
│ │ ├── DELETE.php
│ │ └── POST.php
│ ├── list
│ │ └── GET.php
│ └── POST.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment