Private visibility on statuses prevents non-followers from seeing those
Filters out hidden stream entries from Atom feed Blocks now generate hidden stream entries, can be used to federate blocks Private statuses cannot be reblogged (generates generic 422 error for now) POST /api/v1/statuses now takes visibility=(public|unlisted|private) param instead of unlisted boolean Statuses JSON now contains visibility=(public|unlisted|private) field
This commit is contained in:
		
					parent
					
						
							
								6d71044c85
							
						
					
				
			
			
				commit
				
					
						80e02b90e4
					
				
			
		
					 17 changed files with 106 additions and 149 deletions
				
			
		|  | @ -8,8 +8,7 @@ class Api::V1::AccountsController < ApiController | |||
| 
 | ||||
|   respond_to :json | ||||
| 
 | ||||
|   def show | ||||
|   end | ||||
|   def show; end | ||||
| 
 | ||||
|   def verify_credentials | ||||
|     @account = current_user.account | ||||
|  | @ -47,7 +46,7 @@ class Api::V1::AccountsController < ApiController | |||
|   end | ||||
| 
 | ||||
|   def statuses | ||||
|     @statuses = @account.statuses.paginate_by_max_id(DEFAULT_STATUSES_LIMIT, params[:max_id], params[:since_id]) | ||||
|     @statuses = @account.statuses.permitted_for(@account, current_account).paginate_by_max_id(DEFAULT_STATUSES_LIMIT, params[:max_id], params[:since_id]) | ||||
|     @statuses = cache_collection(@statuses, Status) | ||||
| 
 | ||||
|     set_maps(@statuses) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue