Browse Source

Remove legacy lib_path parameter

muc
Bohdan Horbeshko 1 year ago
parent
commit
a2781be79d
6 changed files with 1 additions and 9 deletions
  1. +0
    -1
      README.md
  2. +0
    -1
      config.yml.example
  3. +0
    -1
      config/config.go
  4. +1
    -4
      config_schema.json
  5. +0
    -1
      test/bad_config.yml
  6. +0
    -1
      test/good_config.yml

+ 0
- 1
README.md View File

@ -60,7 +60,6 @@ It is good idea to obtain Telegram API ID from [**https://my.telegram.org**](htt
```
:telegram:
:tdlib:
:lib_path: 'lib/'
:client:
:api_id: '845316' # telegram API ID (my.telegram.org) #
:api_hash: '27fe5224bc822bf3a45e015b4f9dfdb7' # telegram API HASH (my.telegram.org) #


+ 0
- 1
config.yml.example View File

@ -6,7 +6,6 @@
:upload: 'https:///xmppfiles.localhost' # xmpp http upload address
:tdlib_verbosity: 1
:tdlib:
:lib_path: 'lib/'
:client:
:api_id: '17349'
:api_hash: '344583e45741c457fe1862106095a5eb'


+ 0
- 1
config/config.go View File

@ -42,7 +42,6 @@ type TelegramContentConfig struct {
// TelegramTdlibConfig is for :tdlib: subtree
type TelegramTdlibConfig struct {
Path string `yaml:":lib_path"`
Client TelegramTdlibClientConfig `yaml:":client"`
}


+ 1
- 4
config_schema.json View File

@ -28,12 +28,9 @@
"type": "integer"
},
":tdlib": {
"required": [":lib_path", ":client"],
"required": [":client"],
"type": "object",
"properties": {
":lib_path": {
"$ref": "#/definitions/non-empty-string"
},
":client": {
"type": "object",
"required": [":api_id", ":api_hash"],


+ 0
- 1
test/bad_config.yml View File

@ -6,7 +6,6 @@
:upload: 'https:///xmppfiles.localhost' # xmpp http upload address
:tdlib_verbosity: 1
:tdlib:
:lib_path: 'lib/'
:client:
:api_id: '17349'
:api_hash: '344583e45741c457fe1862106095a5eb'


+ 0
- 1
test/good_config.yml View File

@ -6,7 +6,6 @@
:upload: '' # xmpp http upload address
:tdlib_verbosity: 1
:tdlib:
:lib_path: 'lib/'
:client:
:api_id: '17349'
:api_hash: '344583e45741c457fe1862106095a5eb'


Loading…
Cancel
Save