mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
More link types for #616
This commit is contained in:
parent
7684e966fc
commit
4d595c1380
@ -52,6 +52,20 @@ class LinkTypeSeeder extends Seeder
|
||||
$link->editable = false;
|
||||
$link->save();
|
||||
|
||||
$link = new LinkType;
|
||||
$link->name = 'Reimbursement';
|
||||
$link->inward = 'reimburses';
|
||||
$link->outward = 'is reimbursed by';
|
||||
$link->editable = false;
|
||||
$link->save();
|
||||
|
||||
$link = new LinkType;
|
||||
$link->name = 'PartialReimbursement';
|
||||
$link->inward = 'partially reimburses';
|
||||
$link->outward = 'is partially reimbursed by';
|
||||
$link->editable = false;
|
||||
$link->save();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user