remove unused names

This commit is contained in:
Joseph Ditton 2021-12-03 18:40:37 -07:00
parent 5446509b96
commit c14d0a89a2
3 changed files with 4 additions and 2 deletions

View File

@ -8,8 +8,11 @@ echo "Where is your git repo? (eg git@github.com:dittonjs/NestStarterApp.git)"
read reponame
# replace the title of the README with new app name
sed -i "s/USU CS4610 Nest Starter App/$appname/" README.md
git add .
git commit -m "setup new project '$appname'"
git remote rename origin upstream
git remote add origin $reponame
git branch -M main

View File

@ -1,4 +1,4 @@
import { Body, Controller, Get, HttpException, HttpStatus, Post, Res, UseGuards } from '@nestjs/common';
import { Body, Controller, Get, HttpException, HttpStatus, Post, Res } from '@nestjs/common';
import * as bcrypt from 'bcrypt';
import { Response } from 'express';
import { JwtBody } from 'server/decorators/jwt_body.decorator';

View File

@ -1,7 +1,6 @@
import { Injectable } from '@nestjs/common';
import { InjectRepository } from '@nestjs/typeorm';
import { In, Repository } from 'typeorm';
import * as bcrypt from 'bcrypt';
import { Role, RoleKey } from 'server/entities/role.entity';
@Injectable()