Skip to content

Commit

Permalink
Merge pull request #46 from iamrishupatel/dev
Browse files Browse the repository at this point in the history
Streamline main with dev
  • Loading branch information
iamrishupatel authored Jul 10, 2023
2 parents 926edfd + 6cc3553 commit 50587d0
Show file tree
Hide file tree
Showing 55 changed files with 1,218 additions and 438 deletions.
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,7 @@ node_modules
pnpm-lock.yaml
package-lock.json
yarn.lock


# src/
src/lib/components/common/RichTextEditor.component.svelte
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''
---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**

- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**

- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''
---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
10 changes: 10 additions & 0 deletions src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" />

<link
rel="stylesheet"
href="//unpkg.com/@highlightjs/[email protected]/styles/default.min.css"
/>
<script src="//unpkg.com/@highlightjs/[email protected]/highlight.min.js"></script>

<!-- Include the Quill library -->
<link href="//cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet" />
<script src="//cdn.quilljs.com/1.3.6/quill.min.js"></script>
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
Expand Down
2 changes: 1 addition & 1 deletion src/lib/api/appwrite/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ export async function createAnonSession(): Promise<void> {

export const handleSignout = async (sessionId: string): Promise<void> => {
try {
authStore.set(initialAuthStore);
await account.deleteSession(sessionId);
authStore.set(initialAuthStore);
await goto(ROUTES.LOGIN);
} catch (e) {
console.log(e);
Expand Down
Binary file added src/lib/assets/app-screenshots/board-page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/lib/assets/logos/TypeScript_Logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/lib/assets/logos/built-with-appwrite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 50587d0

Please sign in to comment.