Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Submitted by MeliL on November 23, 2020

Beyaz Liste (JavaScript)

const Discord = require('discord.js')
const fs = require('fs');
var ayarlar = require('../ayarlar.json');
const db = require('quick.db');

var sahip = ayarlar.sahip;

exports.run = async (client, message, args) => {
if ( message.author.id != ayarlar.sahip ){
   message.channel.send("**Bu komutu kulanmaya yetkiniz yok!!**")
  }else{
  let nesne = args[0]
  if (!nesne) return message.channel.send('Kullanıcı beyazlisteye alınamadı.')
   
  db.delete(`kullanicikaraliste_${nesne}`)
   message.channel.send(" :tada: Completed. :thumbsup: `" + nesne + "` kullanıcısı veya sunucu artık botu kullanabilir..")
  }   
 };
                                        
  
exports.conf = {
    enabled: true,
    guildOnly: false,
    aliases: ["beyazliste"],
    permLevel: 5
}

exports.help = {
    name: 'whitelist',
    description: '',
    usage: 'whitelist'
}
//XiR