mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
mild formatting changes
This commit is contained in:
parent
4d66b7d456
commit
004c48b8ad
@ -37,6 +37,8 @@ Options are: *(all options accept entries of levels listed below them)*
|
|||||||
* `ERROR`
|
* `ERROR`
|
||||||
* `CRITICAL`
|
* `CRITICAL`
|
||||||
|
|
||||||
|
## allianceauth.services.hooks.get_extension_logger
|
||||||
|
|
||||||
```{eval-rst}
|
```{eval-rst}
|
||||||
.. automodule:: allianceauth.services.hooks.get_extension_logger
|
.. automodule:: allianceauth.services.hooks.get_extension_logger
|
||||||
:members:
|
:members:
|
||||||
|
@ -45,6 +45,7 @@ When a group is restricted only superuser admins can directly add or remove them
|
|||||||
```{eval-rst}
|
```{eval-rst}
|
||||||
.. _ref-reserved-group-names:
|
.. _ref-reserved-group-names:
|
||||||
```
|
```
|
||||||
|
|
||||||
## Reserved group names
|
## Reserved group names
|
||||||
|
|
||||||
When using Alliance Auth to manage external services like Discord, Auth will automatically duplicate groups on those services. E.g. on Discord Auth will create roles of the same name as groups. However, there may be cases where you want to manage groups on external services by yourself or by another bot. For those cases you can define a list of reserved group names. Auth will ensure that you can not create groups with a reserved name. You will find this list on the admin site under groupmanagement.
|
When using Alliance Auth to manage external services like Discord, Auth will automatically duplicate groups on those services. E.g. on Discord Auth will create roles of the same name as groups. However, there may be cases where you want to manage groups on external services by yourself or by another bot. For those cases you can define a list of reserved group names. Auth will ensure that you can not create groups with a reserved name. You will find this list on the admin site under groupmanagement.
|
||||||
|
@ -79,7 +79,7 @@ sudo apt-get install python3.11 python3.11-dev python3.11-venv
|
|||||||
```
|
```
|
||||||
|
|
||||||
:::
|
:::
|
||||||
:::{group-tab} CentOS 7, Stream 8, Stream 9
|
:::{group-tab} CentOS 7
|
||||||
We need to build Python from source
|
We need to build Python from source
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
@ -93,7 +93,32 @@ sudo make altinstall
|
|||||||
```
|
```
|
||||||
|
|
||||||
:::
|
:::
|
||||||
::::
|
:::{group-tab} CentOS Stream 8
|
||||||
|
We need to build Python from source
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd ~
|
||||||
|
sudo yum install gcc openssl-devel bzip2-devel libffi-devel wget
|
||||||
|
wget https://www.python.org/ftp/python/3.11.5/Python-3.11.5.tgz
|
||||||
|
tar xvf Python-3.11.5.tgz
|
||||||
|
cd Python-3.11.5/
|
||||||
|
./configure --enable-optimizations --enable-shared
|
||||||
|
sudo make altinstall
|
||||||
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
:::{group-tab} CentOS Stream 9
|
||||||
|
We need to build Python from source
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd ~
|
||||||
|
sudo yum install gcc openssl-devel bzip2-devel libffi-devel wget
|
||||||
|
wget https://www.python.org/ftp/python/3.11.5/Python-3.11.5.tgz
|
||||||
|
tar xvf Python-3.11.5.tgz
|
||||||
|
cd Python-3.11.5/
|
||||||
|
./configure --enable-optimizations --enable-shared
|
||||||
|
sudo make altinstall
|
||||||
|
```
|
||||||
|
|
||||||
### Database
|
### Database
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user