-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from Prakhargarg-2010196/development
Initalize develop branch
- Loading branch information
Showing
13 changed files
with
9,117 additions
and
31,348 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
# EventManagementSystem | ||
# Event Management System version 1.0 | ||
|
||
https://eventooze.netlify.app/ | ||
## Basic Crud functionalities from user dashboard | ||
|
||
- Create an Event | ||
- Modify/Update an Event | ||
- Delete an Event | ||
- View/Read all the events associated to one user | ||
|
||
## Other Features include | ||
|
||
### Admin Dashboard that provides functionalities like | ||
|
||
- Manage events all over the website | ||
- Approve an event/Validate the event for public viewer ship | ||
- |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,9 @@ | ||
// This is the file from which the App starts | ||
import "App.css"; | ||
|
||
import { Component } from "react"; | ||
import { Routes } from "Routes/Routes"; | ||
|
||
class App extends Component { | ||
render() { | ||
return ( | ||
<> | ||
<Routes /> | ||
</> | ||
); | ||
} | ||
export default function App (){ | ||
return <Routes/>; | ||
} | ||
export default App; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,6 @@ class AuthService{ | |
|
||
|
||
} | ||
|
||
export default new AuthService(); | ||
let auth = new AuthService(); | ||
export default auth; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,4 +62,5 @@ class PostService { | |
|
||
} | ||
|
||
export default new PostService(); | ||
let post=new PostService(); | ||
export default post; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"include": [ | ||
".", | ||
"../typescript/types", | ||
"src" | ||
], | ||
"compilerOptions": { | ||
"baseUrl": "src" | ||
}, | ||
|
||
} |