コード例 #1
0
        public async Task <bool> CanCreateCollection(Guid orgId, Guid collectionId)
        {
            if (collectionId != default)
            {
                return(false);
            }

            return(await _currentContext.CreateNewCollections(orgId));
        }