update function name

pull/23/head
Mallory Hancock 2017-11-09 13:58:57 -08:00
parent d3f6fc4e86
commit 30a57d1461
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ from django.contrib.auth.models import User
from django.contrib.auth.models import Group
from .models import Townie, Pubkey
from common.social import post_to_social
from common.social import post_users_to_social
admin.site.unregister(User)
admin.site.unregister(Group)
@ -16,7 +16,7 @@ def bulk_review(madmin, req, qs):
for townie in qs:
townie.reviewed = True
townie.save()
post_to_social(qs)
post_users_to_social(qs)
bulk_review.short_description = 'mark selected townies as reviewed'