mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
More link types for #616
This commit is contained in:
@@ -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();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user