Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linkbit-update #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions Controllers/HomeController.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
using DM_Refiner.Models;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using System.Diagnostics;

namespace DM_Refiner.Controllers
{
[Authorize]
public class HomeController : Controller
{
private readonly ILogger<HomeController> _logger;

public HomeController(ILogger<HomeController> logger)
{
_logger = logger;
}

public IActionResult Index()
{
return View();
}

public IActionResult Privacy()
{
return View();
}

[AllowAnonymous]
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}
}
31 changes: 31 additions & 0 deletions D.A.T.A.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.7.34221.43
MinimumVisualStudioVersion = 10.0.40219.1
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "D.A.T.A", "D.A.T.A.vbproj", "{B965BE0D-0E80-4FB4-9833-2EE7E3053C67}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B965BE0D-0E80-4FB4-9833-2EE7E3053C67}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B965BE0D-0E80-4FB4-9833-2EE7E3053C67}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B965BE0D-0E80-4FB4-9833-2EE7E3053C67}.Debug|x86.ActiveCfg = Debug|x86
{B965BE0D-0E80-4FB4-9833-2EE7E3053C67}.Debug|x86.Build.0 = Debug|x86
{B965BE0D-0E80-4FB4-9833-2EE7E3053C67}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B965BE0D-0E80-4FB4-9833-2EE7E3053C67}.Release|Any CPU.Build.0 = Release|Any CPU
{B965BE0D-0E80-4FB4-9833-2EE7E3053C67}.Release|x86.ActiveCfg = Release|x86
{B965BE0D-0E80-4FB4-9833-2EE7E3053C67}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {489ECE31-2599-42C7-9732-CD5054E15997}
EndGlobalSection
EndGlobal
12,100 changes: 12,100 additions & 0 deletions D.A.T.A.vbproj

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions D.A.T.A.vbproj.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
</Project>
Binary file added Micro/v16/TestStore/0/000.testlog
Binary file not shown.
Binary file added Micro/v16/TestStore/0/testlog.manifest
Binary file not shown.
8 changes: 8 additions & 0 deletions Mobius_navi/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
"""
The flask application package.
"""

from flask import Flask
app = Flask(__name__)

import Mobius_navi.views
Binary file added Mobius_navi/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
Binary file added Mobius_navi/__pycache__/views.cpython-39.pyc
Binary file not shown.
Loading