bridges: Set missing MAINTAINER based on blame command
Maintainer should be set for all bridges. Using git blame to determine who provided the most code to the files. This is obviously not a good solution, feel free to insert own names
This commit is contained in:
parent
95b99d42a4
commit
d4fb02b0d0
2 changed files with 2 additions and 0 deletions
|
@ -5,6 +5,7 @@ class MoebooruBridge extends BridgeAbstract{
|
||||||
const URI = "https://moe.dev.myconan.net/";
|
const URI = "https://moe.dev.myconan.net/";
|
||||||
const CACHE_TIMEOUT = 1800; // 30min
|
const CACHE_TIMEOUT = 1800; // 30min
|
||||||
const DESCRIPTION = "Returns images from given page";
|
const DESCRIPTION = "Returns images from given page";
|
||||||
|
const MAINTAINER = 'pmaziere';
|
||||||
|
|
||||||
const PARAMETERS = array( array(
|
const PARAMETERS = array( array(
|
||||||
'p'=>array(
|
'p'=>array(
|
||||||
|
|
|
@ -4,6 +4,7 @@ class TwitterBridge extends BridgeAbstract{
|
||||||
const URI='https://twitter.com/';
|
const URI='https://twitter.com/';
|
||||||
const CACHE_TIMEOUT = 300; // 5min
|
const CACHE_TIMEOUT = 300; // 5min
|
||||||
const DESCRIPTION='returns tweets';
|
const DESCRIPTION='returns tweets';
|
||||||
|
const MAINTAINER = 'pmaziere';
|
||||||
const PARAMETERS=array(
|
const PARAMETERS=array(
|
||||||
'global'=>array(
|
'global'=>array(
|
||||||
'nopic'=>array(
|
'nopic'=>array(
|
||||||
|
|
Loading…
Reference in a new issue