mirror of
https://github.com/opensim/opensim.git
synced 2026-06-02 08:35:35 +08:00
New option added to save oar -profile=url. Migration on RegionStore making CreatorID be 255 chars. Moved Handling of user UUID -> name requests to a new module UserManagement/UserManagementModule.
14 lines
262 B
C#
14 lines
262 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using OpenMetaverse;
|
|
|
|
namespace OpenSim.Region.Framework.Interfaces
|
|
{
|
|
public interface IUserManagement
|
|
{
|
|
string GetUserName(UUID uuid);
|
|
void AddUser(UUID uuid, string userData);
|
|
}
|
|
}
|