microsoft / csapps-msteams-watercooler

Water Cooler is a custom Teams app that enables corporate teams to create, invite, and join casual conversations among teammates, like those that take place by the Water Cooler or break room. Use this template for multiple scenarios, such as new non-project related announcements, topics of interest, current events, or conversations about hobbies. The app provides an easy interface for anyone to find an existing conversation or start a new one. It's a foundation for building custom targeted communication capabilities, promoting interaction amongst coworkers who may otherwise not get a chance to socialize during breaks.
MIT License
23 stars 17 forks source link

Endpoint /log/callback not used #46

Open pdtoloza opened 1 year ago

pdtoloza commented 1 year ago

Hi, where is this endpoint needed? I couldn't find any reference

[HttpGet]
[Route("log/callback")] 
public async Task<IEnumerable<string>> GetCallbackLogsAsync(int maxCount = 1000) 
{ 
       return await Task.FromResult(this.bot.GetCallbackLogs(maxCount)).ConfigureAwait(false);        
}

Thanks!