You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,12 +32,13 @@ There are three types of configuration parameters
32
32
-*db_host* is optional and defaults to `localhost`
33
33
-*db_port* is optional and defaults to `5432`
34
34
- the rest is mandatory
35
-
2.**queries** that this app will use to query the db. These will be passed verbatim to the
35
+
2.**queries** that this app will use to query the db.
36
+
- Queries will be passed verbatim to the
36
37
[prepare()](http://php.net/manual/en/pdo.prepare.php) method of a PDO object. You don't need to
37
38
configure queries for all user attributes. For example if you use the default user home simply
38
39
leave the query `get_home` empty, i.e. `'get_home' => '',`. User Backend SQl Raw will recognize
39
40
this and [communicate](https://docs.nextcloud.com/server/13/developer_manual/api/OCP/UserInterface.html#OCP\UserInterface::implementsActions) to Nextcloud that this feature is not available.
40
-
- For user authentication (i.e. login) you need at least `get_password_hash_for_user` and
41
+
- For user authentication (i.e. login) you need at least `get_password_hash_for_user` and
41
42
`user_exists`. All other queries are optional.
42
43
3.**hash algorithm** (`hash_algorithm_for_new_passwords`) used for creation of new passwords
43
44
- This one is optional and, if you leave it empty, defaults to `bcrypt` ($2y$).
0 commit comments