Fix Router-link typo on ignore.vue

This commit is contained in:
Shigero Toura 2020-11-22 13:18:18 +01:00
parent 3ac9047f3e
commit e462103df8
2 changed files with 3 additions and 5 deletions

View File

@ -21,7 +21,7 @@
>
Marketplace
</router-link></trpl-para></b-navbar-item>
<b-navbar-item><trpl-para>sssss
<b-navbar-item><trpl-para><router-link>
Games
</router-link></trpl-para></b-navbar-item>
<div class="navbar-item has-dropdown is-hoverable is-info">
@ -33,7 +33,7 @@
<a class="navbar-item" href="https://twitter.com/Kaverti">
Twitter
</a>
<a class="navbar-item" href="https://discord.gg/undefined">
<a class="navbar-item" href="https://discord.gg/umTknr5QD4">
Discord
</a>
<router-link class="navbar-item" to='/developers'>Developers</router-link>

View File

@ -2,7 +2,6 @@ const Errors = require('../lib/errors')
module.exports = (sequelize, DataTypes) =>{
let bannedUsernames;
bannedUsernames = sequelize.define('bannedUsernames', {
// Model attributes are defined here
username: {
type: DataTypes.STRING,
allowNull: false
@ -10,8 +9,7 @@ module.exports = (sequelize, DataTypes) =>{
createdAt: DataTypes.DATE,
UpdatedAt: DataTypes.DATE,
}, {
// Other model options go here
// LEGACY, FOR V3, ASSOCIATIONS AND INSTANCE METHODS GO ABOVE RETURN <MODEL> IN V5
});
return bannedUsernames;
}