This is a custom-built application for managing purchase receipts. It integrates with Firefly III to fill some of the gaps that `xactmon` cannot handle, such as restaurant bills with tips, gas station purchases, purchases with the HSA debit card, refunds, and deposits. Photos of receipts can be taken directly within the application using the User Media Web API, or uploaded as existing files. Each photo is associated with transaction data, including date, vendor, amount, and general notes. These data are also synchronized with Firefly whenever possible.
29 lines
434 B
YAML
29 lines
434 B
YAML
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: Role
|
|
metadata:
|
|
name: jenkins
|
|
rules:
|
|
- apiGroups:
|
|
- apps
|
|
resources:
|
|
- deployments
|
|
resourceNames:
|
|
- receipts
|
|
verbs:
|
|
- get
|
|
- patch
|
|
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: RoleBinding
|
|
metadata:
|
|
name: jenkins
|
|
roleRef:
|
|
apiGroup: rbac.authorization.k8s.io
|
|
kind: Role
|
|
name: jenkins
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: default
|
|
namespace: jenkins-jobs
|