11 lines
322 B
JavaScript
11 lines
322 B
JavaScript
const utils = require('./utils');
|
|
|
|
module.exports = async (ctx) => {
|
|
const timeframe = ctx.params.timeframe;
|
|
const url = `https://dribbble.com/shots/popular${timeframe ? `?timeframe=${timeframe}` : ''}`;
|
|
|
|
const title = 'Dribbble - Popular Shots';
|
|
|
|
ctx.state.data = await utils.getData(ctx, url, title);
|
|
};
|