Commit d846cccd authored by Alyx's avatar Alyx
Browse files

a significant amount of work

parent 99e46a03
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -44,3 +44,5 @@ PUSHER_APP_CLUSTER=mt1

MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

SINGLE_USER_MODE=true
+0 −28
Original line number Diff line number Diff line
<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class HomeController extends Controller
{
    /**
     * Create a new controller instance.
     *
     * @return void
     */
    public function __construct()
    {
        $this->middleware('auth');
    }

    /**
     * Show the application dashboard.
     *
     * @return \Illuminate\Contracts\Support\Renderable
     */
    public function index()
    {
        return view('home');
    }
}
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ class RouteServiceProvider extends ServiceProvider
     *
     * @var string
     */
    public const HOME = '/home';
    public const HOME = '/notes';

    /**
     * Define your route model bindings, pattern filters, etc.
+2 −1
Original line number Diff line number Diff line
@@ -14,7 +14,8 @@
        "guzzlehttp/guzzle": "^6.3",
        "laravel/framework": "^7.0",
        "laravel/tinker": "^2.0",
        "laravel/ui": "^2.0"
        "laravel/ui": "^2.0",
        "twbs/bootstrap": "4.5.0"
    },
    "require-dev": {
        "facade/ignition": "^2.0",
+52 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
        "This file is @generated automatically"
    ],
    "content-hash": "f0dcbdc80776ca79d6311b8f92c5a4b5",
    "content-hash": "91bbbdcbaad23aa41ad37d67758dc12f",
    "packages": [
        {
            "name": "asm89/stack-cors",
@@ -3373,6 +3373,57 @@
            "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
            "time": "2019-10-24T08:53:34+00:00"
        },
        {
            "name": "twbs/bootstrap",
            "version": "v4.5.0",
            "source": {
                "type": "git",
                "url": "https://github.com/twbs/bootstrap.git",
                "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/twbs/bootstrap/zipball/7a6da5e3e7ad7c749dde806546a35d4d4259d965",
                "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965",
                "shasum": ""
            },
            "replace": {
                "twitter/bootstrap": "self.version"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "3.3.x-dev"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Mark Otto",
                    "email": "markdotto@gmail.com"
                },
                {
                    "name": "Jacob Thornton",
                    "email": "jacobthornton@gmail.com"
                }
            ],
            "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
            "homepage": "https://getbootstrap.com/",
            "keywords": [
                "JS",
                "css",
                "framework",
                "front-end",
                "mobile-first",
                "responsive",
                "sass",
                "web"
            ],
            "time": "2020-05-12T17:44:42+00:00"
        },
        {
            "name": "vlucas/phpdotenv",
            "version": "v4.1.5",
Loading