def destroy
        if check_current_isAdmin?
            post = Post.find(params[:id])
            post.destroy
            render json: { status: 'SUCCESS', message: 'Post deleted', data: post }, status: :ok