MadelineProtoDocs/docs/API_docs/methods/account.setContentSettings.md

47 lines
1.2 KiB
Markdown
Raw Normal View History

2020-03-06 12:24:14 +01:00
---
title: account.setContentSettings
2020-06-16 17:50:25 +02:00
description: Set sensitive content settings (for viewing or hiding NSFW content)
2020-03-06 12:24:14 +01:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
redirect_from: /API_docs/methods/account_setContentSettings.html
---
2020-06-16 17:50:25 +02:00
# Method: account.setContentSettings
2020-03-06 12:24:14 +01:00
[Back to methods index](index.md)
2020-06-16 17:50:25 +02:00
Set sensitive content settings (for viewing or hiding NSFW content)
2020-03-06 12:24:14 +01:00
### Parameters:
2020-06-16 17:50:25 +02:00
| Name | Type | Description | Required |
|----------|---------------|-------------|----------|
|sensitive\_enabled|[Bool](../types/Bool.md) | Enable NSFW content | Optional|
2020-03-06 12:24:14 +01:00
### Return type: [Bool](../types/Bool.md)
2020-06-16 17:50:25 +02:00
### Can bots use this method: **NO**
2020-03-06 12:24:14 +01:00
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
```php
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$Bool = $MadelineProto->account->setContentSettings(['sensitive_enabled' => Bool, ]);
```
Or, if you're into Lua:
```lua
Bool = account.setContentSettings({sensitive_enabled=Bool, })
```