Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/boo1ean/activity-manager
Yii2 application dedicated to manage your (sport) activity.
https://github.com/boo1ean/activity-manager
Last synced: 30 days ago
JSON representation
Yii2 application dedicated to manage your (sport) activity.
- Host: GitHub
- URL: https://github.com/boo1ean/activity-manager
- Owner: boo1ean
- Created: 2013-06-06T16:19:00.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-07-16T20:16:03.000Z (over 11 years ago)
- Last Synced: 2024-04-14T18:41:52.861Z (7 months ago)
- Language: PHP
- Size: 229 KB
- Stars: 4
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Activity-manager
Yii2 application dedicated to manage your (sport) activity.
## Setup
Set write permissions for some stuff, fire from project root dir:
mkdir runtime www/assets && chmod 777 -R www/assets runtime
## Entities
1. User
- id
- password
- first_name
- last_name
- created_time
- updated_time2. Event
- id
- created_time
- updated_time
- created_by
- updated_by
- title
- description
- start_time
- end_time3. EventMember
- id
- created_time
- updated_time
- created_by
- updated_by
- event_id
- user_id
- status## Features list
1. User is able to participate in events (if get invited to event by event creator).
2. User is able to see list of upcomming events on dashboard.
3. User is able to view description of specific event.
4. User is able to create events.
5. Event creator is able to invite other users to participate in event by email.
6. User which get invite is able to accept or decline it.