You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently, a "direct message channel" or "private channel" is a type of guild that contains a single channel. because of the simplicity of private channels as compared to full-on channels or guilds, I suggest a new PrivateChannel type:
// PrivateChannel is a private channel between a list of users, independent of a guild.// It should be possible to use this channel for both text and voice communications.messagePrivateChannel {
// The list of users that have access to this channel.repeateduint64members=1;
// Whether it is possible to add or remove users to/from this channel.boolis_locked=2;
}
(note that fully private, or "direct message", channels, have the is_locked type set - it is not possible to add more users to a DM between two users.)
The text was updated successfully, but these errors were encountered:
the behavior should be that only one PrivateChannel can exist between two users with is_locked set to true. Any number of PrivateChannels can be made that are not locked.
currently, a "direct message channel" or "private channel" is a type of guild that contains a single channel. because of the simplicity of private channels as compared to full-on channels or guilds, I suggest a new
PrivateChannel
type:(note that fully private, or "direct message", channels, have the
is_locked
type set - it is not possible to add more users to a DM between two users.)The text was updated successfully, but these errors were encountered: