Rick Elrod

Results 71 comments of Rick Elrod
trafficstars

This isn't closable yet because there is likely some fallout from 51cf251. This also breaks the GCM code a bit because right now they share the JSON deserialization code but...

Also need to talk with @ralphbean next week and see about getting 'title' added to grouped messages. This might not work because of how 'grouped' works (can grouped messages have...

Well, we need play-services for integrating with GCM which is (er, will eventually be) used for receiving fedmsg messages. We could implement our own similar system, but there are benefits...

Is there way to use the API for tagging with auth? Once we have oAuth in Mobile, it'd be nice if tagging could count toward badges instead of always being...

Yeah, the whole fmn workflow in Mobile is very much in flux and needs to be smoothed out. I was hoping to get a lot done with it this weekend,...

I can type, I swear.

We discussed this quickly on IRC a few weeks back, this might make a good test-case for Graphite (probably more specifically, statsd) if we are going to continue exploring that...

I think I agree with @hroncok. Check both and warn the user that it's in testing if it is.

```python class UserPersonalTokenList(SubListCreateAPIView): # [...] def get_queryset(self): return get_access_token_model().objects.filter(application__isnull=True, user=self.request.user) ``` We filter on the request user always, even though the route allows for a PK.