Represent numbers by strings in instance activity API (#6198)
Fixes #6197.
This commit is contained in:
		
							parent
							
								
									8d51ce4290
								
							
						
					
					
						commit
						95bd85d9e8
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -21,9 +21,9 @@ class Api::V1::Instances::ActivityController < Api::BaseController
 | 
			
		|||
 | 
			
		||||
      weeks << {
 | 
			
		||||
        week: week.to_time.to_i.to_s,
 | 
			
		||||
        statuses: Redis.current.get("activity:statuses:local:#{week_id}") || 0,
 | 
			
		||||
        logins: Redis.current.pfcount("activity:logins:#{week_id}"),
 | 
			
		||||
        registrations: Redis.current.get("activity:accounts:local:#{week_id}") || 0,
 | 
			
		||||
        statuses: Redis.current.get("activity:statuses:local:#{week_id}") || '0',
 | 
			
		||||
        logins: Redis.current.pfcount("activity:logins:#{week_id}").to_s,
 | 
			
		||||
        registrations: Redis.current.get("activity:accounts:local:#{week_id}") || '0',
 | 
			
		||||
      }
 | 
			
		||||
    end
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue