status() public method

The status servlet shows the size of the internal Elasticsearch search index for messages and users. Furthermore, the servlet reflects the current browser clients settings in the client_info.
public status ( ) : Task
return Task
Esempio n. 1
0
 public async Task status()
 {
     Loklak loklak = new Loklak();
     var result = await loklak.status();
     var d = JObject.Parse(result);
     Assert.IsNotNull(d.Property("system"));
 }