mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-06-26 12:56:38 +02:00
957af0909b
This is an integer which decides the amount of details in the response object. For the channel.* calls the object_detail_level is one of: 0: only return the channel name, nothing else 1: basic channel information only 2: this adds bans, ban_exemptions, invite_exceptions 3: also show members, but only level/name/id 4: also show members, level/name/id/hostname/ip/details/geoip 5: also show members, level and full user details like user.get When no object_detail_level is specified, the following defaults are used: For channel.list the default is 1 (matches current 6.0.6 behavior) For channel.get the default is 3 (matches current 6.0.6 behavior) Using channel.list with object_detail_level=5 is forbidden because it would cause way too much output (and processing time).