You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,12 @@ This repository only contains the API server, if you are looking for easy to use
49
49
- Data export support in various formats
50
50
- Support for multiple ingredient prices
51
51
- Automatic cocktail price calculation based on ingredients
52
-
- SSO Support
52
+
- Single sign-on (SSO) support
53
+
- Recipe recommendations based on your favorites and tags
54
+
55
+
## Documentation
56
+
57
+
[Documentation is available here.](https://docs.barassistant.app/)
53
58
54
59
## Container images
55
60
@@ -63,13 +68,13 @@ We recommend that you always use the latest major release, as it will always be
63
68
64
69
## Managed instance
65
70
66
-
Bar Assistant will always be open-source and MIT-licensed, but if you want to support the project or don't want to self-host, you can try officialy managed instance. Visit [barassistant.app](https://barassistant.app/) for more information about our cloud offering.
71
+
Bar Assistant will always be open-source and MIT-licensed, but if you want to support the project or don't want to self-host, you can try our official managed instance. Visit [barassistant.app](https://barassistant.app/) for more information about our cloud offering.
[Documentation is available here.](https://bar-assistant.github.io/docs/)
77
+
There's an [unofficial Raycast extension](https://www.raycast.com/stupifier/barassistant) maintained by a [community member](https://github.com/zhdenny).
Copy file name to clipboardExpand all lines: app/Http/Controllers/Public/BarController.php
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -12,18 +12,18 @@
12
12
13
13
class BarController extends Controller
14
14
{
15
-
#[OAT\Get(path: '/public/{barId}', tags: ['Public'], operationId: 'showPublicBar', description: 'Show public information about a single bar. To access this endpoint the bar must be marked as public.', summary: 'Show bar', parameters: [
16
-
newOAT\Parameter(name: 'barId', in: 'path', required: true, description: 'Database id of bar', schema: newOAT\Schema(type: 'number')),
15
+
#[OAT\Get(path: '/public/{slugOrId}', tags: ['Public'], operationId: 'showPublicBar', description: 'Show public information about a single bar. To access this endpoint the bar must be marked as public.', summary: 'Show bar', parameters: [
16
+
newOAT\Parameter(name: 'slugOrId', in: 'path', required: true, description: 'Database id of bar', schema: newOAT\Schema(type: 'string')),
0 commit comments