You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 15:06:20 +00:00
⭐ Start the forum framework
This commit is contained in:
@@ -65,8 +65,8 @@ export class OutgoingHeader
|
|||||||
public static GROUP_CREATE_OPTIONS = 798;
|
public static GROUP_CREATE_OPTIONS = 798;
|
||||||
public static GROUP_FAVORITE = 3549;
|
public static GROUP_FAVORITE = 3549;
|
||||||
public static GET_FORUM_STATS = 3149;
|
public static GET_FORUM_STATS = 3149;
|
||||||
public static GET_FORUM_THREADS = 873;
|
public static GET_FORUM_THREADS = 436;
|
||||||
public static GET_FORUMS_LIST = 436;
|
public static GET_FORUMS_LIST = 873;
|
||||||
public static GET_FORUM_MESSAGES = 232;
|
public static GET_FORUM_MESSAGES = 232;
|
||||||
public static GET_FORUM_THREAD = 3900;
|
public static GET_FORUM_THREAD = 3900;
|
||||||
public static GET_UNREAD_FORUMS_COUNT = 2908;
|
public static GET_UNREAD_FORUMS_COUNT = 2908;
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ export class GroupInformationParser implements IMessageParser
|
|||||||
private _flag: boolean;
|
private _flag: boolean;
|
||||||
private _canMembersDecorate: boolean;
|
private _canMembersDecorate: boolean;
|
||||||
private _pendingRequestsCount: number;
|
private _pendingRequestsCount: number;
|
||||||
|
private _hasForum: boolean;
|
||||||
|
|
||||||
public flush(): boolean
|
public flush(): boolean
|
||||||
{
|
{
|
||||||
@@ -39,6 +40,7 @@ export class GroupInformationParser implements IMessageParser
|
|||||||
this._flag = false;
|
this._flag = false;
|
||||||
this._canMembersDecorate = false;
|
this._canMembersDecorate = false;
|
||||||
this._pendingRequestsCount = 0;
|
this._pendingRequestsCount = 0;
|
||||||
|
this._hasForum = false;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -65,6 +67,7 @@ export class GroupInformationParser implements IMessageParser
|
|||||||
this._flag = wrapper.readBoolean();
|
this._flag = wrapper.readBoolean();
|
||||||
this._canMembersDecorate = wrapper.readBoolean();
|
this._canMembersDecorate = wrapper.readBoolean();
|
||||||
this._pendingRequestsCount = wrapper.readInt();
|
this._pendingRequestsCount = wrapper.readInt();
|
||||||
|
this._hasForum = wrapper.readBoolean();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -153,4 +156,9 @@ export class GroupInformationParser implements IMessageParser
|
|||||||
{
|
{
|
||||||
return this._pendingRequestsCount;
|
return this._pendingRequestsCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public get hasForum(): boolean
|
||||||
|
{
|
||||||
|
return this._hasForum;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user