When one of us is creating a plugin, do not check for the number limit. The following two changes should do it In [PluginController.cs:GetPlugins()](https://github.com/GenesiAI/PluginsApi/blob/ec3856075e1ee038dcfc51850a0cdb3091a31bb2/Api/Controllers/PluginController.cs#L57C69-L57C69), set result.MaxPlugins to 9999 In [PluginRepository.cs:HasReachedPluginQuota()](https://github.com/GenesiAI/PluginsApi/blob/ec3856075e1ee038dcfc51850a0cdb3091a31bb2/Application/Plugins/PluginRepository.cs#L82), return 9999 When checking whether to return 9999 or act normally, the whitelist should probably check for emails instead of userids, but it's your discretion
When one of us is creating a plugin, do not check for the number limit.
The following two changes should do it
In PluginController.cs:GetPlugins(), set result.MaxPlugins to 9999
In PluginRepository.cs:HasReachedPluginQuota(), return 9999
When checking whether to return 9999 or act normally, the whitelist should probably check for emails instead of userids, but it's your discretion