resources :media, only: [:create]
resources :apps, only: [:create]
resources :blocks, only: [:index]
+ resources :mutes, only: [:index]
resources :favourites, only: [:index]
resources :reports, only: [:index, :create]
+ resources :site, only: [:index]
resources :follow_requests, only: [:index] do
member do
Returns the updated relationship to the user.
+### Getting site information
+
+**GET /api/v1/site**
+
+Returns an object containing the `title`, character limit (`max_chars`), and an object of `links` for the site.
+Does not require authentication.
+
+ # Muting and unmuting users
+
+ **POST /api/v1/accounts/:id/mute**
+ **POST /api/v1/accounts/:id/unmute**
+
+ Returns the updated relationship to the user.
+
### OAuth apps
**POST /api/v1/apps**