mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 21:36:55 +01:00
44 lines
652 B
Markdown
44 lines
652 B
Markdown
---
|
|
title: privacyRuleDisallowAll
|
|
description: Rule to disallow all users
|
|
---
|
|
## Constructor: privacyRuleDisallowAll
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Rule to disallow all users
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|:-------------:|:--------:|------------:|
|
|
|
|
|
|
|
|
### Type: [PrivacyRule](../types/PrivacyRule.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$privacyRuleDisallowAll = ['_' => 'privacyRuleDisallowAll', ];
|
|
```
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
```
|
|
{"_":"privacyRuleDisallowAll"}
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
privacyRuleDisallowAll={_='privacyRuleDisallowAll', }
|
|
|
|
```
|
|
|
|
|